2022-08-16 14:23:53 +02:00
|
|
|
<?php
|
|
|
|
|
2022-08-17 15:39:53 +02:00
|
|
|
namespace BookStack\References\ModelResolvers;
|
2022-08-16 14:23:53 +02:00
|
|
|
|
|
|
|
use BookStack\Model;
|
|
|
|
|
|
|
|
interface CrossLinkModelResolver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Resolve the given href link value to a model.
|
|
|
|
*/
|
|
|
|
public function resolve(string $link): ?Model;
|
2022-08-29 18:46:41 +02:00
|
|
|
}
|