| 1 | <?php |
||
| 7 | class Base implements BaseInterface |
||
| 8 | { |
||
| 9 | /** @var int */ |
||
| 10 | protected $id; |
||
| 11 | /** @var string */ |
||
| 12 | protected $accountKey; |
||
| 13 | /** @var bool */ |
||
| 14 | protected $isOwner; |
||
| 15 | /** @var int */ |
||
| 16 | protected $updatedAt; |
||
| 17 | /** @var int */ |
||
| 18 | protected $archivedAt; |
||
| 19 | /** @var bool */ |
||
| 20 | protected $isDeleted; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return int |
||
| 24 | */ |
||
| 25 | public function getId() :int |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function getAccountKey() :string |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function isOwner() :bool |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return int |
||
| 48 | */ |
||
| 49 | public function getUpdatedAt() :?int |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return int |
||
| 56 | */ |
||
| 57 | public function getArchivedAt() :?int |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @return bool |
||
| 64 | */ |
||
| 65 | public function isDeleted() : bool |
||
| 69 | } |
||
| 70 |