| 1 | <?php | ||
| 9 | class Model | ||
| 10 | { | ||
| 11 | |||
| 12 | /** | ||
| 13 | * Fill the Model with | ||
| 14 | * the data from the array. | ||
| 15 | * | ||
| 16 | * @param array $data | ||
| 17 | * | ||
| 18 | * @return Model | ||
| 19 | */ | ||
| 20 | public function fill(array $data): Model | ||
| 30 | |||
| 31 | /** | ||
| 32 | * Convert the Model to an array | ||
| 33 | * | ||
| 34 | * @return array | ||
| 35 | */ | ||
| 36 | public function toArray(): array | ||
| 40 | |||
| 41 | } | ||
| 42 |