5d29d0cc7b
Also re-named/orgranized some files for this, to make them "References" specific instead of a subset of "Util".
13 lines
No EOL
233 B
PHP
13 lines
No EOL
233 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;
|
|
} |