| 1 | <?php |
||
| 16 | trait Sleepify |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Magic method of sleep. |
||
| 20 | */ |
||
| 21 | 1 | public function __sleep() |
|
| 29 | /** |
||
| 30 | * Magic method of wake up. |
||
| 31 | */ |
||
| 32 | 1 | public function __wakeup() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Get the property value for the given property. |
||
| 45 | * |
||
| 46 | * @param \ReflectionProperty $property |
||
| 47 | * |
||
| 48 | * @return mixed |
||
| 49 | */ |
||
| 50 | 1 | protected function getPropertyValue(\ReflectionProperty $property) |
|
| 56 | } |
||
| 57 |