| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 2 | protected function parseDateFromString($string, $format) |
|
| 24 | { |
||
| 25 | 2 | $result = date_parse_from_format($format, $string); |
|
| 26 | 2 | return mktime( |
|
| 27 | 2 | (int) $result['hour'], |
|
| 28 | 2 | (int) $result['minute'], |
|
| 29 | 2 | (int) $result['second'], |
|
| 30 | 2 | (int) $result['month'], |
|
| 31 | 2 | (int) $result['day'], |
|
| 32 | 2 | (int) $result['year'] |
|
| 33 | ); |
||
| 34 | } |
||
| 35 | } |
||
| 36 |