| 1 | <?php |
||
| 23 | abstract class AbstractInstructionsRendererFactory implements FactoryInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Instructions renderer class |
||
| 27 | */ |
||
| 28 | const ENGINE_CLASS = InstructionsRendererInterface::class; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param ServiceLocatorInterface $services |
||
| 32 | * @return InstructionsRendererInterface |
||
| 33 | */ |
||
| 34 | public function createService(ServiceLocatorInterface $services) |
||
| 48 | } |
||
| 49 |