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