Passed
Branch master (046a17)
by Mathieu
02:22
created
src/DependencyInjection/Compiler/AccessCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
             }
95 95
 
96 96
             $roles[$annotation->role] = array_map(
97
-                function (string $permission) use ($prefix) {
97
+                function(string $permission) use ($prefix) {
98 98
                     return $prefix . strtoupper($permission);
99 99
                 },
100 100
                 $annotation->permissions
Please login to merge, or discard this patch.
src/Reader/AbstractReader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
         array_walk(
103 103
             $annotations,
104
-            function (object $annotation) use ($class) {
104
+            function(object $annotation) use ($class) {
105 105
                 $annotation instanceof AnnotationInterface
106 106
                 && $this->checkAnnotationIntegrity(
107 107
                     $annotation,
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 
204 204
         array_walk(
205 205
             $annotations,
206
-            function (object $annotation) use ($method) {
206
+            function(object $annotation) use ($method) {
207 207
                 $annotation instanceof AnnotationInterface
208 208
                 && $this->checkAnnotationIntegrity(
209 209
                     $annotation,
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 
240 240
         array_walk(
241 241
             $annotations,
242
-            function (object $annotation) use ($property) {
242
+            function(object $annotation) use ($property) {
243 243
                 $annotation instanceof AnnotationInterface
244 244
                 && $this->checkAnnotationIntegrity(
245 245
                     $annotation,
Please login to merge, or discard this patch.