mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-12-13 07:42:23 +03:00
Also moved some model-level helpers, which used app container resolution, to be injected services instead.
14 lines
181 B
PHP
14 lines
181 B
PHP
<?php
|
|
|
|
namespace BookStack\App;
|
|
|
|
/**
|
|
* Assigned to models that can have slugs.
|
|
* Must have the below properties.
|
|
*
|
|
* @property string $slug
|
|
*/
|
|
interface SluggableInterface
|
|
{
|
|
}
|