]> BookStack Code Mirror - bookstack/blobdiff - app/Interfaces/Sluggable.php
Added "page_include_parse" theme event
[bookstack] / app / Interfaces / Sluggable.php
index 6aa94e69c9a66e39340df51fd91d7ee8c546974a..2d56e847e388fcca3993d4ecb35f77f302106d10 100644 (file)
@@ -1,23 +1,18 @@
-<?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
+}