Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function __construct($responsesYamlPath) |
||
25 | { |
||
26 | if (!file_exists($responsesYamlPath)) { |
||
27 | throw new \InvalidArgumentException(sprintf("File \"%s\" does not exist.", $responsesYamlPath)); |
||
28 | } |
||
29 | |||
30 | $this->responsesYamlPath = $responsesYamlPath; |
||
31 | $this->responsesYamlDir = dirname($this->responsesYamlPath); |
||
32 | } |
||
33 | |||
57 |