Passed
Push — develop ( 89f4d5...6069b2 )
by Daniel
06:16
created
src/Factory/Fixtures/Component/AbstractComponentFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         }
63 63
         $this->ops = array_filter(
64 64
             array_merge(static::defaultOps(), $ops),
65
-            function ($key) {
65
+            function($key) {
66 66
                 if (!array_key_exists($key, static::defaultOps())) {
67 67
                     throw new InvalidFactoryOptionException(
68 68
                         sprintf('%s is not a valid option for the factory %s', $key, \get_class($this))
Please login to merge, or discard this patch.
src/Entity/Component/AbstractComponent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
         return array_unique(
241 241
             array_filter(
242 242
                 array_map(
243
-                    function ($content) {
243
+                    function($content) {
244 244
                         if ($content instanceof ComponentGroup) {
245 245
                             return $content->getParent();
246 246
                         }
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
         return array_unique(
260 260
             array_filter(
261 261
                 array_map(
262
-                    function (ComponentLocation $loc) {
262
+                    function(ComponentLocation $loc) {
263 263
                         return $loc->getContent();
264 264
                     },
265 265
                     $this->locations->toArray()
Please login to merge, or discard this patch.
src/Resources/config/services.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
19 19
 use Symfony\Component\DependencyInjection\Reference;
20 20
 
21
-return function (ContainerConfigurator $configurator) {
21
+return function(ContainerConfigurator $configurator) {
22 22
     $services = $configurator->services();
23 23
 
24 24
     $services
Please login to merge, or discard this patch.