Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 3.3332 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
26 | protected static function annotations(array $annotations): array |
||
27 | { |
||
28 | foreach (static::ANNOTATIONS as $annotation => $handler) { |
||
29 | 4 | if (isset($annotations[$annotation])) { |
|
30 | continue; |
||
31 | } |
||
32 | 4 | ||
33 | $annotations[$annotation] = $handler; |
||
34 | } |
||
35 | |||
36 | return $annotations; |
||
37 | } |
||
38 | |||
48 |