]>
BookStack Code Mirror - bookstack/blob - app/App/SluggableInterface.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
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
}