| 1 | <?php |
||
| 10 | class VOClosure extends ValueObject |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * VOClosure constructor. |
||
| 14 | * |
||
| 15 | * @param \Closure $value |
||
| 16 | */ |
||
| 17 | 6 | public function __construct(\Closure $value) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return \Closure |
||
| 24 | */ |
||
| 25 | 6 | public function getValue() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param \Closure $closure |
||
| 32 | * @return static |
||
| 33 | */ |
||
| 34 | public static function fromClosure(\Closure $closure) |
||
| 38 | } |
||
| 39 |