| 1 | <?php |
||
| 13 | abstract class PermissionManager implements PermissionManagerInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Creates an empty permission. |
||
| 17 | */ |
||
| 18 | public function createPermission() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Gets an permission by the given id. |
||
| 28 | */ |
||
| 29 | public function findPermissionById(int $id) : ?PermissionInterface |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Returns the permission's fully qualified class name. |
||
| 36 | */ |
||
| 37 | public function findPermissions() : array |
||
| 41 | } |