| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 12 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 5 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 32 | 3 | public function handle(  | 
            |
| 33 | AbstractAnnotation $annotation,  | 
            ||
| 34 | ServiceMethodBuilder $serviceMethodBuilder,  | 
            ||
| 35 | ?Converter $converter,  | 
            ||
| 36 | ?int $index  | 
            ||
| 37 |     ): void { | 
            ||
| 38 | /** @var string[] $headerList */  | 
            ||
| 39 | 3 | $headerList = $annotation->getValue();  | 
            |
| 40 | 3 |         foreach ($headerList as $name => $header) { | 
            |
| 41 | 3 | $serviceMethodBuilder->addHeader($name, $header);  | 
            |
| 42 | }  | 
            ||
| 43 | 3 | }  | 
            |
| 44 | }  | 
            ||
| 45 |