A platform to create documentation/wiki content built with PHP & Laravel
|
|
<?php
|
||
|
|
|
||
|
|
namespace BookStack\Users\Models;
|
||
|
|
|
||
|
|
interface OwnableInterface
|
||
|
|
{
|
||
|
|
public function getOwnerFieldName(): string;
|
||
|
|
}
|