Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 2.2559 |
Changes | 0 |
1 | <?php |
||
66 | 4 | public function getACLApp(string $name): Apps |
|
67 | { |
||
68 | 4 | if (trim($name) == self::GEWAER_DEFAULT_APP_NAME) { |
|
69 | $app = self::findFirst(0); |
||
70 | } else { |
||
71 | 4 | $app = self::findFirst(\Phalcon\DI::getDefault()->getConfig()->app->id); |
|
72 | } |
||
73 | |||
74 | return $app; |
||
1 ignored issue
–
show
|
|||
75 | } |
||
87 |