Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.072 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 2 | public function assert(Acl $acl, ?RoleInterface $role = null, ?ResourceInterface $resource = null, $privilege = null): bool |
|
21 | { |
||
22 | 2 | $user = $resource->getInstance(); |
|
|
|||
23 | |||
24 | 2 | if (CurrentUser::get() && CurrentUser::get() === $user) { |
|
25 | return true; |
||
26 | } |
||
27 | |||
28 | 2 | return $acl->reject('it is not himself'); |
|
29 | } |
||
36 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.