Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | protected function collectTestData(CollectorInterface $collector): void |
||
16 | { |
||
17 | $collector->collect( |
||
|
|||
18 | operation: 'read', |
||
19 | path: __FILE__, |
||
20 | args: ['arg1' => 'v1', 'arg2' => 'v2'], |
||
21 | ); |
||
22 | $collector->collect( |
||
23 | operation: 'read', |
||
24 | path: __FILE__, |
||
25 | args: ['arg3' => 'v3', 'arg4' => 'v4'], |
||
26 | ); |
||
54 |