Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
12 | public function failingTypeDataprovider(): array |
||
13 | { |
||
14 | return [ |
||
15 | ['', 'inclusive'], |
||
16 | ['', 'exclusive'], |
||
17 | ['inclusive', ''], |
||
18 | ['exclusive', ''], |
||
19 | [null, null], |
||
20 | ['other', 'inclusive'], |
||
21 | ['other', 'exclusive'], |
||
22 | ['inclusive', 'other'], |
||
23 | ['exclusive', 'other'], |
||
24 | ['inclusive', null], |
||
25 | ['exclusive', null], |
||
26 | [null, 'inclusive'], |
||
27 | [null, 'exclusive'], |
||
28 | ]; |
||
42 |