| 1 | <?php |
||
| 30 | trait BuilderAwareTrait |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * @var BuilderInterface |
||
| 34 | * @access protected |
||
| 35 | */ |
||
| 36 | protected $builder; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | * |
||
| 41 | * @since 2.0.1 able to set NULL |
||
| 42 | */ |
||
| 43 | public function setBuilder(BuilderInterface $builder = null) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function getBuilder()/*# : BuilderInterface */ |
||
| 56 | } |
||
| 57 |