Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | class DataProviderExtractor |
||
8 | { |
||
9 | /** |
||
10 | * Extract the data from the data provider method |
||
11 | * |
||
12 | * @param ExampleNode $example |
||
13 | * @param string $dataProviderMethod |
||
14 | * |
||
15 | * @return array |
||
16 | * |
||
17 | * @throws \ReflectionException |
||
18 | */ |
||
19 | public function getProvidedData(ExampleNode $example, string $dataProviderMethod): array |
||
32 | } |
||
33 | } |