| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function filterValuesProvider() |
||
| 45 | { |
||
| 46 | return [ |
||
| 47 | "valid-input-1" => ["23 March 2014" , new DateTime("23 March 2014")], |
||
| 48 | "valid-input-2" => ["23 Mar 2014" , new DateTime("23 March 2014")], |
||
| 49 | "invalid-input-1" => ["23/03/2014" , "23/03/2014"], |
||
| 50 | "invalid-input-2" => ["not-a-date" , "not-a-date"], |
||
| 51 | "no-input" => ["" , ""], |
||
| 52 | "timestamp" => [1359739801 , new DateTime("01 February 2013 17:30:01 +00:00")] |
||
| 53 | ]; |
||
| 54 | } |
||
| 55 | } |
||
| 56 |