Conditions | 4 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.0466 |
Changes | 0 |
1 | <?php |
||
7 | 2 | public function convert($input) |
|
8 | { |
||
9 | 2 | if (!$input) { |
|
10 | 1 | return; |
|
11 | } |
||
12 | |||
13 | 1 | if (is_numeric($input) && $input < 100000) { //Date may be 42338 (=> 30.11.2015 |
|
14 | 1 | $date = \PHPExcel_Shared_Date::ExcelToPHPObject($input); |
|
15 | |||
16 | 1 | return $this->formatOutput($date); |
|
17 | } |
||
18 | |||
19 | return parent::convert($input); |
||
20 | } |
||
21 | } |
||
22 |