mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 07:12:36 +00:00
14 lines
238 B
PHP
14 lines
238 B
PHP
<?php
|
|
|
|
namespace BookStack\References\ModelResolvers;
|
|
|
|
use BookStack\App\Model;
|
|
|
|
interface CrossLinkModelResolver
|
|
{
|
|
/**
|
|
* Resolve the given href link value to a model.
|
|
*/
|
|
public function resolve(string $link): ?Model;
|
|
}
|