1 | <?php |
||
7 | class YamlLoader implements Loader |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $responsesYamlPath; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $responsesYamlDir; |
||
18 | |||
19 | /** |
||
20 | * @param $responsesYamlPath |
||
21 | * @throws \InvalidArgumentException |
||
22 | * @internal param $ [] $yamlFileContent |
||
23 | */ |
||
24 | public function __construct($responsesYamlPath) |
||
33 | |||
34 | /** |
||
35 | * @throws \RuntimeException |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getResponsesArray() |
||
56 | } |
||
57 |