| 1 | <?php |
||
| 8 | class GeoCacheStatusModifiedEntity extends AbstractEntity |
||
| 9 | { |
||
| 10 | /** @var int */ |
||
| 11 | public $cacheId; |
||
| 12 | |||
| 13 | /** @var DateTime */ |
||
| 14 | public $dateModified; |
||
| 15 | |||
| 16 | /** @var int */ |
||
| 17 | public $oldState; |
||
| 18 | |||
| 19 | /** @var int */ |
||
| 20 | public $newState; |
||
| 21 | |||
| 22 | /** @var int */ |
||
| 23 | public $userId; |
||
| 24 | |||
| 25 | /** @var UserEntity */ |
||
| 26 | public $user; |
||
| 27 | |||
| 28 | /** @var GeoCacheReportStatusEntity */ |
||
| 29 | public $statusOld; |
||
| 30 | |||
| 31 | /** @var GeoCacheReportStatusEntity */ |
||
| 32 | public $statusNew; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function isNew() : bool |
||
| 41 | } |
||
| 42 |