mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			305 B
		
	
	
	
		
			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;
 | |
| }
 |