| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 7 | protected function voteOnAttribute(string $attribute, $subject, TokenInterface $token): bool |
|
| 27 | { |
||
| 28 | /** @var Article|Comment $subject */ |
||
| 29 | 7 | $user = $token->getUser(); |
|
| 30 | |||
| 31 | 7 | if (!$user instanceof User) { |
|
| 32 | return false; |
||
| 33 | } |
||
| 34 | |||
| 35 | 7 | return $subject->getAuthor()->getId() === $user->getId(); |
|
| 36 | } |
||
| 38 |