| Conditions | 3 |
| Paths | 3 |
| Total Lines | 18 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | #[Override] |
||
| 16 | public function checkUserAccess( |
||
| 17 | ControllerInterface $controller, |
||
| 18 | GameControllerInterface $game |
||
| 19 | ): bool { |
||
| 20 | |||
| 21 | if (!$controller instanceof AccessCheckControllerInterface) { |
||
| 22 | return true; |
||
| 23 | } |
||
| 24 | |||
| 25 | $feature = $controller->getFeatureIdentifier(); |
||
| 26 | if ($this->isFeatureGranted($game->getUser()->getId(), $feature)) { |
||
| 27 | return true; |
||
| 28 | } |
||
| 29 | |||
| 30 | $game->addInformation(_('[b][color=#ff2626]Aktion nicht möglich, Spieler ist nicht berechtigt![/color][/b]')); |
||
| 31 | |||
| 32 | return false; |
||
| 33 | } |
||
| 55 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths