Completed
Push — master ( c06e21...bff75d )
by Arnaud
27s queued 10s
created
src/LAG/AdminBundle/Tests/AdminBundle/Configuration/ConfigurationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             'title' => 'Planet Application',
37 37
         ]);
38 38
     
39
-        $this->assertExceptionRaised(LogicException::class, function () use ($configuration) {
39
+        $this->assertExceptionRaised(LogicException::class, function() use ($configuration) {
40 40
             $configuration->setParameters([
41 41
                 'an_other_configuration' => 'value',
42 42
             ]);
Please login to merge, or discard this patch.
src/Configuration/MenuItemConfiguration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
                 return $attr;
107 107
             })
108
-            ->setNormalizer('link_attr', function (Options $options, $value) {
108
+            ->setNormalizer('link_attr', function(Options $options, $value) {
109 109
 
110 110
                 if (!is_array($value)) {
111 111
                     $value = [];
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
                 return $resolvedItems;
136 136
             })
137
-            ->setNormalizer('text', function (Options $options, $text) {
137
+            ->setNormalizer('text', function(Options $options, $text) {
138 138
                 if (!$text) {
139 139
                     // TODO use translation pattern key instead
140 140
                     $text = ucfirst($this->name);
Please login to merge, or discard this patch.