@@ -94,7 +94,7 @@ |
||
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 |
@@ -101,7 +101,7 @@ discard block |
||
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 |
||
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 |
||
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, |