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