2021-06-26 15:23:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
2023-05-17 17:56:55 +01:00
|
|
|
namespace BookStack\App;
|
2021-03-08 22:34:22 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Assigned to models that can have slugs.
|
|
|
|
|
* Must have the below properties.
|
2025-11-23 23:29:30 +00:00
|
|
|
*
|
|
|
|
|
* @property string $slug
|
2021-03-08 22:34:22 +00:00
|
|
|
*/
|
2025-09-02 16:02:52 +01:00
|
|
|
interface SluggableInterface
|
2021-03-08 22:34:22 +00:00
|
|
|
{
|
2021-06-26 15:23:15 +00:00
|
|
|
}
|