| 1 | <?php |
||
| 5 | trait SoftColumnTrait |
||
| 6 | { |
||
| 7 | /** @var string|null */ |
||
| 8 | protected $added = null; |
||
| 9 | /** @var string|null */ |
||
| 10 | protected $updated = null; |
||
| 11 | /** @var string|null */ |
||
| 12 | protected $deleted = null; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return string|null |
||
| 16 | */ |
||
| 17 | public function getSoftAdded() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string|null |
||
| 24 | */ |
||
| 25 | public function getSoftUpdated() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string|null |
||
| 32 | */ |
||
| 33 | public function getSoftDeleted() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param null|string $added |
||
| 40 | * |
||
| 41 | * @return static |
||
| 42 | */ |
||
| 43 | public function setSoftAdded($added) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param null|string $updated |
||
| 51 | * |
||
| 52 | * @return static |
||
| 53 | */ |
||
| 54 | public function setSoftUpdated($updated) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @param null|string $deleted |
||
| 62 | * |
||
| 63 | * @return static |
||
| 64 | */ |
||
| 65 | public function setSoftDeleted($deleted) |
||
| 70 | } |
||
| 71 |