| 1 | <?php |
||
| 16 | class Model implements \JsonSerializable |
||
| 17 | { |
||
| 18 | use AutoIncrementID; |
||
| 19 | use CreatedAt; |
||
| 20 | use UpdatedAt; |
||
| 21 | use DoNotDelete; |
||
| 22 | use SetProperties; |
||
| 23 | |||
| 24 | private $model_value; |
||
| 25 | |||
| 26 | public function __construct() |
||
| 30 | |||
| 31 | public function setModelValue($value) |
||
| 35 | |||
| 36 | public function getModelValue() |
||
| 40 | |||
| 41 | public function populate($date) |
||
| 45 | |||
| 46 | public function jsonSerialize() |
||
| 55 | } |
||
| 56 |