1 | <?php |
||
20 | class Catalogue extends AbstractExtensibleModel implements CatalogueInterface |
||
21 | { |
||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | protected function _construct() |
||
29 | |||
30 | /** |
||
31 | * @return int|null |
||
32 | */ |
||
33 | public function getId() |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getTitle() : string |
||
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | public function getCreatedAt() : string |
||
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getUpdatedAt() : string |
||
61 | |||
62 | /** |
||
63 | * @param int $id |
||
64 | * @return CatalogueInterface |
||
65 | */ |
||
66 | public function setId($id) |
||
70 | |||
71 | /** |
||
72 | * @param string $title |
||
73 | * @return CatalogueInterface |
||
74 | */ |
||
75 | public function setTitle(string $title) : CatalogueInterface |
||
79 | |||
80 | /** |
||
81 | * @param string $createdAt |
||
82 | * @return CatalogueInterface |
||
83 | */ |
||
84 | public function setCreatedAt(string $createdAt) : CatalogueInterface |
||
88 | |||
89 | /** |
||
90 | * @param string $updatedAt |
||
91 | * @return CatalogueInterface |
||
92 | */ |
||
93 | public function setUpdatedAt(string $updatedAt) : CatalogueInterface |
||
97 | } |
||
98 |