Total Complexity | 4 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ModelFormLayer extends EntityFormLayer |
||
12 | { |
||
13 | public $content; |
||
14 | public $createdAt; |
||
15 | |||
16 | public static function getEntityClass(): string |
||
17 | { |
||
18 | return Model::class; |
||
19 | } |
||
20 | |||
21 | protected function loadCreatedAt(?DateTime $val) |
||
22 | { |
||
23 | $this->createdAt = $val !== null ? $val->format('d.m.Y') : $val; |
||
24 | } |
||
25 | |||
26 | protected function saveCreatedAt() |
||
29 | } |
||
30 | } |
||
31 |