Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function provideFilterData() : array |
||
37 | { |
||
38 | return [ |
||
39 | [ |
||
40 | 'value' => '23:59:59', |
||
41 | ], |
||
42 | [ |
||
43 | 'value' => '1:1:1', |
||
44 | 'message' => '$value must be in the correct format HH:MM:SS', |
||
45 | ], |
||
46 | [ |
||
47 | 'value' => null, |
||
48 | 'message' => '$value must be a non-empty string', |
||
49 | ], |
||
50 | [ |
||
51 | 'value' => '', |
||
52 | 'message' => '$value must be a non-empty string', |
||
53 | ], |
||
54 | [ |
||
55 | 'value' => "\n\t \n", |
||
56 | 'message' => '$value must be a non-empty string', |
||
57 | ], |
||
61 |