| Conditions | 3 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get the response from the file if available. |
||
| 28 | * |
||
| 29 | * @param array $tags |
||
| 30 | * |
||
| 31 | * @return array|null |
||
| 32 | */ |
||
| 33 | protected function getFileResponses(array $tags) |
||
| 34 | { |
||
| 35 | $responseFileTags = array_filter($tags, function ($tag) { |
||
| 36 | return $tag instanceof Tag && strtolower($tag->getName()) === 'responsefile'; |
||
| 37 | }); |
||
| 38 | |||
| 39 | if (empty($responseFileTags)) { |
||
| 53 |