| 1 | <?php |
||
| 24 | trait StatefulEntityTrait |
||
| 25 | { |
||
| 26 | private $status = FlexibleEntityInterface::STATUS_NONE; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @see FlexibleEntityInterface |
||
| 30 | */ |
||
| 31 | public function status($status = null) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * touch |
||
| 44 | * |
||
| 45 | * Set the entity as modified. |
||
| 46 | * |
||
| 47 | * @access public |
||
| 48 | * @return FlexibleEntityInterface |
||
| 49 | */ |
||
| 50 | public function touch() |
||
| 56 | } |
||
| 57 |