1 | <?php |
||
28 | trait Dated |
||
29 | { |
||
30 | /** |
||
31 | * @var UTCDateTime The document created date |
||
32 | */ |
||
33 | protected $createdOn; |
||
34 | /** |
||
35 | * @var UTCDateTime The document updated date |
||
36 | */ |
||
37 | protected $updatedOn; |
||
38 | |||
39 | /** |
||
40 | * Gets the created date |
||
41 | * |
||
42 | * @return - The created date |
||
|
|||
43 | */ |
||
44 | public function getCreatedOn(): UTCDateTime |
||
48 | |||
49 | /** |
||
50 | * Gets the updated date |
||
51 | * |
||
52 | * @return - The updated date |
||
53 | */ |
||
54 | public function getUpdatedOn(): UTCDateTime |
||
58 | } |
||
59 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.