1 | <?php |
||
22 | trait DateTimeCreatedAtTrait { |
||
23 | |||
24 | /** |
||
25 | * Created at. |
||
26 | * |
||
27 | * @var DateTime |
||
28 | */ |
||
29 | private $createdAt; |
||
30 | |||
31 | /** |
||
32 | * Get the created at. |
||
33 | * |
||
34 | * @return DateTime Returns the created at. |
||
35 | */ |
||
36 | public function getCreatedAt() { |
||
39 | |||
40 | /** |
||
41 | * Set the created at. |
||
42 | * |
||
43 | * @param DateTime|null $createdAt The created at. |
||
44 | */ |
||
45 | public function setCreatedAt(DateTime $createdAt = null) { |
||
49 | } |
||
50 |