mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			177 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			177 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Activity\Models;
 | 
						|
 | 
						|
interface Loggable
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Get the string descriptor for this item.
 | 
						|
     */
 | 
						|
    public function logDescriptor(): string;
 | 
						|
}
 |