Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/app/Interfaces/
Upload File :
Current File : /var/www/html/bookstack/app/Interfaces/Sluggable.php

<?php

namespace BookStack\Interfaces;

/**
 * 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;
}