| 1 | <?php |
||
| 14 | class BuilderFactory implements FactoryInterface |
||
| 15 | { |
||
| 16 | /** @var DispatcherInterface */ |
||
| 17 | private $dispatcher; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return Builder|mixed |
||
| 21 | */ |
||
| 22 | public function create() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param DispatcherInterface $dispatcher |
||
| 31 | */ |
||
| 32 | public function overwriteDispatcher(DispatcherInterface $dispatcher) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return Request |
||
| 39 | */ |
||
| 40 | protected function getRequest() |
||
| 52 | } |
||
| 53 |