Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function dataProvider(): array |
||
26 | { |
||
27 | return [ |
||
28 | 'int' => [1, 'i:1;',], |
||
29 | 'float' => [1.1, 'd:1.1;',], |
||
30 | 'string' => ['a', 's:1:"a";',], |
||
31 | 'null' => [null, 'N;',], |
||
32 | 'bool' => [true, 'b:1;',], |
||
33 | 'object' => [new \stdClass(), 'O:8:"stdClass":0:{}',], |
||
34 | 'array' => [[], 'a:0:{}',], |
||
35 | ]; |
||
38 |