mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-24 19:07:20 +03:00
11 lines
202 B
PHP
11 lines
202 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace BookStack\Entities\Models;
|
||
|
|
|
||
|
|
use BookStack\Entities\Tools\EntityDefaultTemplate;
|
||
|
|
|
||
|
|
interface HasDefaultTemplateInterface
|
||
|
|
{
|
||
|
|
public function defaultTemplate(): EntityDefaultTemplate;
|
||
|
|
}
|