mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-09-09 06:29:32 +03:00
Reworked some stuff around slugs to use interface in a better way. Also standardised phpdoc to use @return instead of @returns
9 lines
122 B
PHP
9 lines
122 B
PHP
<?php
|
|
|
|
namespace BookStack\Users\Models;
|
|
|
|
interface OwnableInterface
|
|
{
|
|
public function getOwnerFieldName(): string;
|
|
}
|