Completed
Push — dev ( b30194...34445a )
by Андрей
02:18
created
Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     public function init(ModuleManagerInterface $manager)
54 54
     {
55 55
         if (!$manager instanceof ModuleManager) {
56
-            $errMsg =sprintf('Module manager not implement %s', ModuleManager::class);
56
+            $errMsg = sprintf('Module manager not implement %s', ModuleManager::class);
57 57
             throw new Exception\InvalidArgumentException($errMsg);
58 58
         }
59 59
 
Please login to merge, or discard this patch.
test/phpunit/_files/ContextResolver/config/application.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
             Service\Module3\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestServiceDir() . 'module3',
34 34
             Service\Service\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestServiceDir() . 'service',
35 35
 
36
-            CustomService\Module1\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestCustomServiceDir(). 'module1',
36
+            CustomService\Module1\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestCustomServiceDir() . 'module1',
37 37
             CustomService\Module2\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestCustomServiceDir() . 'module2',
38 38
             CustomService\Module3\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestCustomServiceDir() . 'module3',
39 39
             CustomService\Service\Module::MODULE_NAME => TestPaths::getPathToContextResolverTestCustomServiceDir() . 'service',
Please login to merge, or discard this patch.
src/EntryNameResolver/EntryNameResolverChainFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             /** @var EntryNameResolverInterface $resolver */
66 66
             $resolver = $serviceLocator->get($name, $options);
67 67
 
68
-            $priority = array_key_exists('priority', $options) ? (integer)$options['priority'] : EntryNameResolverChain::DEFAULT_PRIORITY;
68
+            $priority = array_key_exists('priority', $options) ? (integer) $options['priority'] : EntryNameResolverChain::DEFAULT_PRIORITY;
69 69
 
70 70
             $chain->attach($resolver, $priority);
71 71
         }
Please login to merge, or discard this patch.
src/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      */
135 135
     public function setFlagUsePeeringServiceManagers($flagUsePeeringServiceManagers)
136 136
     {
137
-        $this->flagUsePeeringServiceManagers = (bool)$flagUsePeeringServiceManagers;
137
+        $this->flagUsePeeringServiceManagers = (bool) $flagUsePeeringServiceManagers;
138 138
 
139 139
         return $this;
140 140
     }
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function setFlagCheckAbstractFactories($flagCheckAbstractFactories)
160 160
     {
161
-        $this->flagCheckAbstractFactories = (bool)$flagCheckAbstractFactories;
161
+        $this->flagCheckAbstractFactories = (bool) $flagCheckAbstractFactories;
162 162
 
163 163
         return $this;
164 164
     }
Please login to merge, or discard this patch.