Completed
Push — develop ( c1b71b...e37043 )
by Siad
07:08 queued 04:03
created
src/FeatureToggle/Factory/ToggleManagerFactory.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
config/module.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/FeatureToggle/Factory/FeatureToggleControllerPluginFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/FeatureToggle/Factory/FeatureToggleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/FeatureToggle/Factory/FeatureToggleViewHelperFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.