| 1 | <?php |
||
| 13 | class RouteFactory implements FactoryInterface, MutableCreationOptionsInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Options to use when creating an instance |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $creationOptions = []; |
||
| 21 | |||
| 22 | public function createService(ServiceLocatorInterface $serviceLocator, $cName = null, $rName = null) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Set creation options |
||
| 29 | * |
||
| 30 | * @param array $options |
||
| 31 | * |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function setCreationOptions(array $options) |
||
| 38 | } |
||
| 39 |