1 | <?php |
||
18 | trait DateCreatedAttribute |
||
19 | { |
||
20 | |||
21 | private $dateCreated; |
||
22 | |||
23 | /** |
||
24 | * @param $value |
||
25 | * @return $this |
||
26 | */ |
||
27 | public function setDateCreated($value) |
||
38 | |||
39 | /** |
||
40 | * @return DateTime |
||
41 | */ |
||
42 | public function getDateCreated() |
||
53 | |||
54 | /** |
||
55 | * @return string|null |
||
56 | */ |
||
57 | public function getDateCreatedIso8601() |
||
72 | } |
||
73 |