Passed
Push — master ( b455fc...fe3421 )
by Dominik
02:24
created
src/MonologServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     private function getLoggerDefinition(Container $container): callable
42 42
     {
43
-        return function () use ($container) {
43
+        return function() use ($container) {
44 44
             return $container['monolog'];
45 45
         };
46 46
     }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     private function getMonologDefinition(Container $container): callable
54 54
     {
55
-        return function ($container) {
55
+        return function($container) {
56 56
             $log = new Logger($container['monolog.name']);
57 57
             $log->pushHandler(new GroupHandler($container['monolog.handlers']));
58 58
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     private function getMonologFormatterDefinition(Container $container): callable
69 69
     {
70
-        return function () {
70
+        return function() {
71 71
             return new LineFormatter();
72 72
         };
73 73
     }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     private function getMonologHandlersDefinition(Container $container): callable
81 81
     {
82
-        return function () use ($container) {
82
+        return function() use ($container) {
83 83
             return [$container['monolog.default_handler']];
84 84
         };
85 85
     }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     private function getMonologDefaultHandlerDefinition(Container $container): callable
93 93
     {
94
-        return function () use ($container) {
94
+        return function() use ($container) {
95 95
             $handler = new StreamHandler(
96 96
                 $container['monolog.logfile'],
97 97
                 $container['monolog.level'],
Please login to merge, or discard this patch.
src/DoctrineDbalServiceProvider.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     private function getDbsOptionsInitializerDefinition(Container $container): callable
55 55
     {
56
-        return $container->protect(function () use ($container) {
56
+        return $container->protect(function() use ($container) {
57 57
             static $initialized = false;
58 58
 
59 59
             if ($initialized) {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     private function getDbsDefinition(Container $container): callable
90 90
     {
91
-        return function () use ($container) {
91
+        return function() use ($container) {
92 92
             $container['doctrine.dbal.dbs.options.initializer']();
93 93
 
94 94
             $dbs = new Container();
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                     $manager = $container['doctrine.dbal.dbs.event_manager'][$name];
103 103
                 }
104 104
 
105
-                $dbs[$name] = function () use ($options, $config, $manager) {
105
+                $dbs[$name] = function() use ($options, $config, $manager) {
106 106
                     return DriverManager::getConnection($options, $config, $manager);
107 107
                 };
108 108
             }
@@ -118,14 +118,14 @@  discard block
 block discarded – undo
118 118
      */
119 119
     private function getDbsConfigDefinition(Container $container): callable
120 120
     {
121
-        return function () use ($container) {
121
+        return function() use ($container) {
122 122
             $container['doctrine.dbal.dbs.options.initializer']();
123 123
 
124 124
             $addLogger = $container['logger'] ?? false;
125 125
 
126 126
             $configs = new Container();
127 127
             foreach ($container['doctrine.dbal.dbs.options'] as $name => $options) {
128
-                $configs[$name] = function () use ($addLogger, $container) {
128
+                $configs[$name] = function() use ($addLogger, $container) {
129 129
                     $config = new Configuration();
130 130
                     if ($addLogger) {
131 131
                         $config->setSQLLogger(new DoctrineDbalLogger($container['logger']));
@@ -146,12 +146,12 @@  discard block
 block discarded – undo
146 146
      */
147 147
     private function getDbsEventManagerDefinition(Container $container): callable
148 148
     {
149
-        return function () use ($container) {
149
+        return function() use ($container) {
150 150
             $container['doctrine.dbal.dbs.options.initializer']();
151 151
 
152 152
             $managers = new Container();
153 153
             foreach ($container['doctrine.dbal.dbs.options'] as $name => $options) {
154
-                $managers[$name] = function () {
154
+                $managers[$name] = function() {
155 155
                     return new EventManager();
156 156
                 };
157 157
             }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      */
167 167
     private function getDbDefinition(Container $container): callable
168 168
     {
169
-        return function () use ($container) {
169
+        return function() use ($container) {
170 170
             $dbs = $container['doctrine.dbal.dbs'];
171 171
 
172 172
             return $dbs[$container['doctrine.dbal.dbs.default']];
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      */
180 180
     private function getDbConfigDefinition(Container $container): callable
181 181
     {
182
-        return function () use ($container) {
182
+        return function() use ($container) {
183 183
             $dbs = $container['doctrine.dbal.dbs.config'];
184 184
 
185 185
             return $dbs[$container['doctrine.dbal.dbs.default']];
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     private function getDbEventManagerDefinition(Container $container): callable
194 194
     {
195
-        return function () use ($container) {
195
+        return function() use ($container) {
196 196
             $dbs = $container['doctrine.dbal.dbs.event_manager'];
197 197
 
198 198
             return $dbs[$container['doctrine.dbal.dbs.default']];
Please login to merge, or discard this patch.
src/DoctrineMongoServiceProvider.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     private function getMongoDbsOptionsInitializerDefinition(Container $container): callable
51 51
     {
52
-        return $container->protect(function () use ($container) {
52
+        return $container->protect(function() use ($container) {
53 53
             static $initialized = false;
54 54
 
55 55
             if ($initialized) {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     private function getMongoDbsDefinition(Container $container): callable
86 86
     {
87
-        return function () use ($container) {
87
+        return function() use ($container) {
88 88
             $container['doctrine.mongo.dbs.options.initializer']();
89 89
 
90 90
             $mongodbs = new Container();
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                     $manager = $container['doctrine.mongo.dbs.event_manager'][$name];
99 99
                 }
100 100
 
101
-                $mongodbs[$name] = function () use ($options, $config, $manager) {
101
+                $mongodbs[$name] = function() use ($options, $config, $manager) {
102 102
                     return new Connection($options['server'], $options['options'], $config, $manager);
103 103
                 };
104 104
             }
@@ -114,14 +114,14 @@  discard block
 block discarded – undo
114 114
      */
115 115
     private function getMongoDbsConfigDefinition(Container $container): callable
116 116
     {
117
-        return function () use ($container) {
117
+        return function() use ($container) {
118 118
             $container['doctrine.mongo.dbs.options.initializer']();
119 119
 
120 120
             $addLogger = $container['logger'] ?? false;
121 121
 
122 122
             $configs = new Container();
123 123
             foreach ($container['doctrine.mongo.dbs.options'] as $name => $options) {
124
-                $configs[$name] = function () use ($addLogger, $container) {
124
+                $configs[$name] = function() use ($addLogger, $container) {
125 125
                     $config = new Configuration();
126 126
                     if ($addLogger) {
127 127
                         $logger = new DoctrineMongoLogger(
@@ -147,12 +147,12 @@  discard block
 block discarded – undo
147 147
      */
148 148
     private function getMongoDbsEventManagerDefinition(Container $container): callable
149 149
     {
150
-        return function () use ($container) {
150
+        return function() use ($container) {
151 151
             $container['doctrine.mongo.dbs.options.initializer']();
152 152
 
153 153
             $managers = new Container();
154 154
             foreach ($container['doctrine.mongo.dbs.options'] as $name => $options) {
155
-                $managers[$name] = function () {
155
+                $managers[$name] = function() {
156 156
                     return new EventManager();
157 157
                 };
158 158
             }
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
      */
168 168
     private function getMongoDbDefinition(Container $container): callable
169 169
     {
170
-        return function () use ($container) {
170
+        return function() use ($container) {
171 171
             $dbs = $container['doctrine.mongo.dbs'];
172 172
 
173 173
             return $dbs[$container['doctrine.mongo.dbs.default']];
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      */
181 181
     private function getMongoDbConfigDefinition(Container $container): callable
182 182
     {
183
-        return function () use ($container) {
183
+        return function() use ($container) {
184 184
             $dbs = $container['doctrine.mongo.dbs.config'];
185 185
 
186 186
             return $dbs[$container['doctrine.mongo.dbs.default']];
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      */
194 194
     private function getMongoDbEventManagerDefinition(Container $container): callable
195 195
     {
196
-        return function () use ($container) {
196
+        return function() use ($container) {
197 197
             $dbs = $container['doctrine.mongo.dbs.event_manager'];
198 198
 
199 199
             return $dbs[$container['doctrine.mongo.dbs.default']];
Please login to merge, or discard this patch.
src/Logger/DoctrineMongoLogger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             $query['data'] = '**'.$query['num'].' item(s)**';
50 50
         }
51 51
 
52
-        array_walk_recursive($query, function (&$value) {
52
+        array_walk_recursive($query, function(&$value) {
53 53
             $value = $this->flatValue($value);
54 54
         });
55 55
 
Please login to merge, or discard this patch.
src/DoctrineCacheServiceProvider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     private function getOrmCacheLocatorDefinition(Container $container): callable
46 46
     {
47
-        return $container->protect(function (string $key, array $options) use ($container) {
47
+        return $container->protect(function(string $key, array $options) use ($container) {
48 48
             $cacheInstanceKey = 'orm.cache.instances.'.$key;
49 49
             if (isset($container[$cacheInstanceKey])) {
50 50
                 return $container[$cacheInstanceKey];
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     private function getOrmCacheFactoryDefinition(Container $container): callable
76 76
     {
77
-        return $container->protect(function (string $driver, array $options) use ($container) {
77
+        return $container->protect(function(string $driver, array $options) use ($container) {
78 78
             $cacheFactoryKey = 'doctrine.cache.factory.'.$driver;
79 79
             if (!isset($container[$cacheFactoryKey])) {
80 80
                 throw new \RuntimeException(
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     private function getOrmCacheFactoryApcuDefinition(Container $container): callable
95 95
     {
96
-        return $container->protect(function () use ($container) {
96
+        return $container->protect(function() use ($container) {
97 97
             return new ApcuCache();
98 98
         });
99 99
     }
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     private function getOrmCacheFactoryArrayDefinition(Container $container): callable
107 107
     {
108
-        return $container->protect(function () use ($container) {
108
+        return $container->protect(function() use ($container) {
109 109
             return new ArrayCache();
110 110
         });
111 111
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     private function getOrmCacheFactoryFilesystemDefinition(Container $container): callable
119 119
     {
120
-        return $container->protect(function (array $options) {
120
+        return $container->protect(function(array $options) {
121 121
             if (empty($options['path'])) {
122 122
                 throw new \RuntimeException('FilesystemCache path not defined');
123 123
             }
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     private function getOrmCacheFactoryMemcachedDefinition(Container $container): callable
140 140
     {
141
-        return $container->protect(function (array $options) use ($container) {
141
+        return $container->protect(function(array $options) use ($container) {
142 142
             if (empty($options['host']) || empty($options['port'])) {
143 143
                 throw new \RuntimeException('Host and port options need to be specified for memcached cache');
144 144
             }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      */
161 161
     private function getOrmCacheFactoryRedisDefinition(Container $container): callable
162 162
     {
163
-        return $container->protect(function (array $options) use ($container) {
163
+        return $container->protect(function(array $options) use ($container) {
164 164
             if (empty($options['host']) || empty($options['port'])) {
165 165
                 throw new \RuntimeException('Host and port options need to be specified for redis cache');
166 166
             }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      */
187 187
     private function getOrmCacheFactoryXCacheDefinition(Container $container): callable
188 188
     {
189
-        return $container->protect(function () use ($container) {
189
+        return $container->protect(function() use ($container) {
190 190
             return new XcacheCache();
191 191
         });
192 192
     }
Please login to merge, or discard this patch.
src/DoctrineOrmServiceProvider.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     private function getOrmEmsOptionsInitializerDefinition(Container $container): callable
92 92
     {
93
-        return $container->protect(function () use ($container) {
93
+        return $container->protect(function() use ($container) {
94 94
             static $initialized = false;
95 95
 
96 96
             if ($initialized) {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      */
126 126
     private function getOrmEmsDefinition(Container $container): callable
127 127
     {
128
-        return function () use ($container) {
128
+        return function() use ($container) {
129 129
             $container['doctrine.orm.ems.options.initializer']();
130 130
 
131 131
             $ems = new Container();
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
                     $config = $container['doctrine.orm.ems.config'][$name];
138 138
                 }
139 139
 
140
-                $ems[$name] = function () use ($container, $options, $config) {
140
+                $ems[$name] = function() use ($container, $options, $config) {
141 141
                     return EntityManager::create(
142 142
                         $container['doctrine.dbal.dbs'][$options['connection']],
143 143
                         $config,
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     private function getOrmEmsConfigServiceProvider(Container $container): callable
159 159
     {
160
-        return function () use ($container) {
160
+        return function() use ($container) {
161 161
             $container['doctrine.orm.ems.options.initializer']();
162 162
 
163 163
             $configs = new Container();
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         string $name,
182 182
         array $options
183 183
     ): callable {
184
-        return function () use ($container, $name, $options) {
184
+        return function() use ($container, $name, $options) {
185 185
             $config = new Configuration();
186 186
 
187 187
             $config->setProxyDir($container['doctrine.orm.proxies_dir']);
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      */
242 242
     private function getOrmMappingDriverChainDefinition(Container $container): callable
243 243
     {
244
-        return $container->protect(function (string $name, Configuration $config, array $mappings) use ($container) {
244
+        return $container->protect(function(string $name, Configuration $config, array $mappings) use ($container) {
245 245
             $container['doctrine.orm.ems.options.initializer']();
246 246
 
247 247
             /** @var MappingDriverChain $chain */
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
      */
279 279
     private function getOrmMappingDriverChainFactoryDefinition(Container $container): callable
280 280
     {
281
-        return $container->protect(function () use ($container) {
281
+        return $container->protect(function() use ($container) {
282 282
             return new MappingDriverChain();
283 283
         });
284 284
     }
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
      */
291 291
     private function getOrmMappingDriverFactoryAnnotation(Container $container): callable
292 292
     {
293
-        return $container->protect(function (array $entity, Configuration $config) {
293
+        return $container->protect(function(array $entity, Configuration $config) {
294 294
             $useSimpleAnnotationReader = $entity['use_simple_annotation_reader'] ?? true;
295 295
 
296 296
             return $config->newDefaultAnnotationDriver(
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
      */
308 308
     private function getOrmMappingDriverFactoryYaml(Container $container): callable
309 309
     {
310
-        return $container->protect(function (array $entity, Configuration $config) {
310
+        return $container->protect(function(array $entity, Configuration $config) {
311 311
             return new YamlDriver($entity['path']);
312 312
         });
313 313
     }
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
      */
320 320
     private function getOrmMappingDriverFactorySimpleYaml(Container $container): callable
321 321
     {
322
-        return $container->protect(function (array $entity, Configuration $config) {
322
+        return $container->protect(function(array $entity, Configuration $config) {
323 323
             return new SimplifiedYamlDriver([$entity['path'] => $entity['namespace']]);
324 324
         });
325 325
     }
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      */
332 332
     private function getOrmMappingDriverFactoryXml(Container $container): callable
333 333
     {
334
-        return $container->protect(function (array $entity, Configuration $config) {
334
+        return $container->protect(function(array $entity, Configuration $config) {
335 335
             return new XmlDriver($entity['path']);
336 336
         });
337 337
     }
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
      */
344 344
     private function getOrmMappingDriverFactorySimpleXml(Container $container): callable
345 345
     {
346
-        return $container->protect(function (array $entity, Configuration $config) {
346
+        return $container->protect(function(array $entity, Configuration $config) {
347 347
             return new SimplifiedXmlDriver([$entity['path'] => $entity['namespace']]);
348 348
         });
349 349
     }
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
      */
356 356
     private function getOrmMappingDriverFactoryPhp(Container $container): callable
357 357
     {
358
-        return $container->protect(function (array $entity, Configuration $config) {
358
+        return $container->protect(function(array $entity, Configuration $config) {
359 359
             return new StaticPHPDriver($entity['path']);
360 360
         });
361 361
     }
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
      */
368 368
     private function getOrmNamingStrategyDefinition(Container $container): callable
369 369
     {
370
-        return function () use ($container) {
370
+        return function() use ($container) {
371 371
             return new DefaultNamingStrategy();
372 372
         };
373 373
     }
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
      */
380 380
     private function getOrmQuoteStrategyDefinition(Container $container): callable
381 381
     {
382
-        return function () use ($container) {
382
+        return function() use ($container) {
383 383
             return new DefaultQuoteStrategy();
384 384
         };
385 385
     }
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
      */
392 392
     private function getOrmEntityListenerResolverDefinition(Container $container): callable
393 393
     {
394
-        return function () use ($container) {
394
+        return function() use ($container) {
395 395
             return new DefaultEntityListenerResolver();
396 396
         };
397 397
     }
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
      */
404 404
     private function getOrmRepositoryFactoryDefinition(Container $container): callable
405 405
     {
406
-        return function () use ($container) {
406
+        return function() use ($container) {
407 407
             return new DefaultRepositoryFactory();
408 408
         };
409 409
     }
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
      */
416 416
     private function getOrmSecondLevelCacheConfigurationDefinition(Container $container): callable
417 417
     {
418
-        return function () use ($container) {
418
+        return function() use ($container) {
419 419
             return new CacheConfiguration();
420 420
         };
421 421
     }
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
      */
428 428
     private function getOrmEmDefinition(Container $container): callable
429 429
     {
430
-        return function () use ($container) {
430
+        return function() use ($container) {
431 431
             $ems = $container['doctrine.orm.ems'];
432 432
 
433 433
             return $ems[$container['doctrine.orm.ems.default']];
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
      */
442 442
     private function getOrmEmConfigDefinition(Container $container): callable
443 443
     {
444
-        return function () use ($container) {
444
+        return function() use ($container) {
445 445
             $configs = $container['doctrine.orm.ems.config'];
446 446
 
447 447
             return $configs[$container['doctrine.orm.ems.default']];
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
      */
456 456
     private function getOrmManagerRegistryDefintion(Container $container): callable
457 457
     {
458
-        return function ($container) {
458
+        return function($container) {
459 459
             return new DoctrineOrmManagerRegistry($container);
460 460
         };
461 461
     }
Please login to merge, or discard this patch.