1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Cycle\ORM\Service; |
||
6 | |||
7 | interface RoleResolverInterface |
||
8 | { |
||
9 | /** |
||
10 | * Automatically resolve role based on object name or instance. |
||
11 | * |
||
12 | * @return non-empty-string |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
13 | */ |
||
14 | public function resolveRole(string|object $entity): string; |
||
15 | } |
||
16 |