]> BookStack Code Mirror - bookstack/blob - app/App/SluggableInterface.php
Merge pull request #5913 from BookStackApp/slug_history
[bookstack] / app / App / SluggableInterface.php
1 <?php
2
3 namespace BookStack\App;
4
5 /**
6  * Assigned to models that can have slugs.
7  * Must have the below properties.
8  *
9  * @property string $slug
10  */
11 interface SluggableInterface
12 {
13 }