1 | <?php |
||
8 | class DateTime extends Decorator |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $format; |
||
14 | |||
15 | /** |
||
16 | * @param string $format |
||
17 | */ |
||
18 | public function __construct(string $format) |
||
22 | |||
23 | /** |
||
24 | * @param Cell $cell |
||
25 | * @return void |
||
26 | */ |
||
27 | public function decorate(Cell $cell) |
||
33 | |||
34 | /** |
||
35 | * @param $dateTime |
||
36 | * @return string |
||
37 | */ |
||
38 | protected function formatDateTime($dateTime) |
||
42 | } |
||
43 |