| 1 | <?php |
||
| 8 | trait OptionsHydrateTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Hydrate the current object with the given values. |
||
| 12 | * |
||
| 13 | * Values should be filtered beforehand so that only properties that exist |
||
| 14 | * in the object are passed. |
||
| 15 | * |
||
| 16 | * @param array $values |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | 1 | private function hydrate(array $values) |
|
| 26 | } |
||
| 27 |