mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			234 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			234 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace BookStack\References\ModelResolvers;
 | |
| 
 | |
| use BookStack\Model;
 | |
| 
 | |
| interface CrossLinkModelResolver
 | |
| {
 | |
|     /**
 | |
|      * Resolve the given href link value to a model.
 | |
|      */
 | |
|     public function resolve(string $link): ?Model;
 | |
| }
 |