1 | <?php |
||
12 | class DateTransformer |
||
13 | { |
||
14 | /** |
||
15 | * @var \DateTime |
||
16 | */ |
||
17 | protected $baseDate; |
||
18 | |||
19 | /** |
||
20 | * Constructor |
||
21 | */ |
||
22 | public function __construct() |
||
26 | |||
27 | /** |
||
28 | * Transforms an Excel date into a DateTime object |
||
29 | * |
||
30 | * @param String $value |
||
31 | * |
||
32 | * @return \DateTime |
||
33 | */ |
||
34 | public function transform($value) |
||
45 | } |
||
46 |