@@ -30,7 +30,6 @@ |
||
30 | 30 | /** |
31 | 31 | * Create service |
32 | 32 | * |
33 | - * @param ServiceLocatorInterface $serviceLocator |
|
34 | 33 | * |
35 | 34 | * @return ToggleManager |
36 | 35 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | return [ |
78 | 78 | StandardAutoloader::class => [ |
79 | 79 | 'namespaces' => [ |
80 | - __NAMESPACE__ => __DIR__ . '/src/', |
|
80 | + __NAMESPACE__ => __DIR__.'/src/', |
|
81 | 81 | ] |
82 | 82 | ] |
83 | 83 | ]; |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function getConfig() |
92 | 92 | { |
93 | - return include __DIR__ . '/config/module.config.php'; |
|
93 | + return include __DIR__.'/config/module.config.php'; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
@@ -50,7 +50,7 @@ |
||
50 | 50 | ], |
51 | 51 | 'zf_annotation' => [ |
52 | 52 | 'namespaces' => [ |
53 | - AnnotationToggle::class => __DIR__ . '/../src/FeatureToggle/Annotation' |
|
53 | + AnnotationToggle::class => __DIR__.'/../src/FeatureToggle/Annotation' |
|
54 | 54 | ], |
55 | 55 | 'event_listeners' => [ |
56 | 56 | Listener\ToggleListener::class |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * @param ContainerInterface $container |
35 | 35 | * @param string $requestedName |
36 | 36 | * @param null|array $options |
37 | - * @return object |
|
37 | + * @return FeatureToggle |
|
38 | 38 | * @throws ServiceNotFoundException if unable to resolve the service. |
39 | 39 | * @throws ServiceNotCreatedException if an exception is raised when |
40 | 40 | * creating a service. |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * @param ContainerInterface $container |
35 | 35 | * @param string $requestedName |
36 | 36 | * @param null|array $options |
37 | - * @return object |
|
37 | + * @return FeatureToggle |
|
38 | 38 | * @throws ServiceNotFoundException if unable to resolve the service. |
39 | 39 | * @throws ServiceNotCreatedException if an exception is raised when |
40 | 40 | * creating a service. |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * @param ContainerInterface $container |
35 | 35 | * @param string $requestedName |
36 | 36 | * @param null|array $options |
37 | - * @return object |
|
37 | + * @return FeatureToggle |
|
38 | 38 | * @throws ServiceNotFoundException if unable to resolve the service. |
39 | 39 | * @throws ServiceNotCreatedException if an exception is raised when |
40 | 40 | * creating a service. |