mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-25 03:10:24 +03:00
11 lines
198 B
PHP
11 lines
198 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace BookStack\Entities\Models;
|
||
|
|
|
||
|
|
use BookStack\Entities\Tools\EntityHtmlDescription;
|
||
|
|
|
||
|
|
interface HasDescriptionInterface
|
||
|
|
{
|
||
|
|
public function descriptionInfo(): EntityHtmlDescription;
|
||
|
|
}
|