mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-25 19:07:25 +03:00
9 lines
122 B
PHP
9 lines
122 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace BookStack\Users\Models;
|
||
|
|
|
||
|
|
interface OwnableInterface
|
||
|
|
{
|
||
|
|
public function getOwnerFieldName(): string;
|
||
|
|
}
|