| 1 | <?php |
||
| 33 | trait FactoryAwareTrait |
||
| 34 | { |
||
| 35 | /** |
||
| 36 | * @var FactoryInterface |
||
| 37 | * @access protected |
||
| 38 | */ |
||
| 39 | protected $factory; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritDoc} |
||
| 43 | */ |
||
| 44 | public function setFactory(FactoryInterface $factory) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritDoc} |
||
| 52 | */ |
||
| 53 | public function getFactory()/*# : FactoryInterface */ |
||
| 63 | |||
| 64 | /** |
||
| 65 | * {@inheritDoc} |
||
| 66 | */ |
||
| 67 | public function hasFactory()/*# : bool */ |
||
| 71 | } |
||
| 72 |