| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 46 | public function getAllValuesForItem(string $item): array{ |
||
| 47 | $valuesToReturn = []; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @var SecurityResponse $response |
||
| 51 | */ |
||
| 52 | foreach($this->responses as $response): |
||
| 53 | $valuesToReturn[$response->identifier] = $response->items[$item]; |
||
| 54 | endforeach; |
||
| 55 | |||
| 56 | return $valuesToReturn; |
||
| 57 | } |
||
| 68 | } |