-<?php namespace BookStack\Interfaces;
+<?php
-use Illuminate\Database\Eloquent\Builder;
+namespace BookStack\Interfaces;
/**
- * Interface Sluggable
- *
* Assigned to models that can have slugs.
* Must have the below properties.
*
- * @property int $id
+ * @property int $id
* @property string $name
- * @method Builder newQuery
*/
interface Sluggable
{
-
/**
* Regenerate the slug for this model.
*/
public function refreshSlug(): string;
-
-}
\ No newline at end of file
+}