BookStack/app/App/Sluggable.php
2023-05-17 17:56:55 +01:00

19 lines
298 B
PHP

<?php
namespace BookStack\App;
/**
* Assigned to models that can have slugs.
* Must have the below properties.
*
* @property int $id
* @property string $name
*/
interface Sluggable
{
/**
* Regenerate the slug for this model.
*/
public function refreshSlug(): string;
}