| 1 | <?php |
||
| 7 | abstract class AbstractSetOptionClosureValue implements OptionInterface |
||
| 8 | { |
||
| 9 | /** @var Closure */ |
||
| 10 | private $valueForThisOption; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param Closure $valueForThisOption |
||
| 14 | */ |
||
| 15 | public function __construct(Closure $valueForThisOption) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return Closure |
||
| 22 | */ |
||
| 23 | public function value() |
||
| 27 | } |