1 | <?php |
||
19 | class CamelCaseNamingStrategyFactory implements FactoryInterface, MutableCreationOptionsInterface |
||
20 | { |
||
21 | use MutableCreationOptionsTrait; |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | * |
||
26 | * @param ServiceLocatorInterface $serviceLocator |
||
27 | * |
||
28 | * @return CamelCaseNamingStrategy |
||
29 | */ |
||
30 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
46 | } |
||
47 |