A platform to create documentation/wiki content built with PHP & Laravel
|
|
<?php
|
||
|
|
|
||
|
|
namespace BookStack\Entities\Models;
|
||
|
|
|
||
|
|
use BookStack\Entities\Tools\EntityHtmlDescription;
|
||
|
|
|
||
|
|
interface HasDescriptionInterface
|
||
|
|
{
|
||
|
|
public function descriptionInfo(): EntityHtmlDescription;
|
||
|
|
}
|