1 | <?php |
||
12 | abstract class Definition implements DefinitionInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var Closure|string |
||
16 | */ |
||
17 | private $value; |
||
18 | |||
19 | /** |
||
20 | * @param Closure|string $value |
||
21 | */ |
||
22 | 4 | public function __construct($value) |
|
26 | |||
27 | /** |
||
28 | * @return Closure|string |
||
29 | */ |
||
30 | 4 | public function getValue() |
|
34 | } |
||
35 |