1 | <?php |
||
29 | trait GeneratorAwareTrait |
||
30 | { |
||
31 | /** |
||
32 | * @var callable |
||
33 | * @access protected |
||
34 | */ |
||
35 | protected $generator; |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function setGenerator(GeneratorInterface $generator = null) |
||
50 | |||
51 | /** |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | public function getGenerator()/*# : callable */ |
||
58 | } |
||
59 |