| 1 | <?php |
||
| 33 | trait ResolverAwareTrait |
||
| 34 | { |
||
| 35 | /** |
||
| 36 | * @var ResolverInterface |
||
| 37 | * @access protected |
||
| 38 | */ |
||
| 39 | protected $resolver; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritDoc} |
||
| 43 | */ |
||
| 44 | public function getResolver()/*# : ResolverInterface */ |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritDoc} |
||
| 57 | */ |
||
| 58 | public function setResolver(ResolverInterface $resolver) |
||
| 63 | |||
| 64 | /** |
||
| 65 | * {@inheritDoc} |
||
| 66 | */ |
||
| 67 | public function hasResolver()/*# : bool */ |
||
| 71 | } |
||
| 72 |