@@ -49,7 +49,7 @@ |
||
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 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | private function getLoggerDefinition(Container $container): \Closure |
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 |
||
52 | 52 | */ |
53 | 53 | private function getMonologDefinition(Container $container): \Closure |
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 |
||
67 | 67 | */ |
68 | 68 | private function getMonologFormatterDefinition(Container $container): \Closure |
69 | 69 | { |
70 | - return function () { |
|
70 | + return function() { |
|
71 | 71 | return new LineFormatter(); |
72 | 72 | }; |
73 | 73 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | private function getMonologHandlersDefinition(Container $container): \Closure |
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 |
||
91 | 91 | */ |
92 | 92 | private function getMonologDefaultHandlerDefinition(Container $container): \Closure |
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'], |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | private function getMongoDbsOptionsInitializerDefinition(Container $container): \Closure |
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 |
||
84 | 84 | */ |
85 | 85 | private function getMongoDbsDefinition(Container $container): \Closure |
86 | 86 | { |
87 | - return function () use ($container) { |
|
87 | + return function() use ($container) { |
|
88 | 88 | $container['mongodbs.options.initializer'](); |
89 | 89 | |
90 | 90 | $mongodbs = new Container(); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $manager = $container['mongodbs.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 |
||
114 | 114 | */ |
115 | 115 | private function getMongoDbsConfigDefinition(Container $container): \Closure |
116 | 116 | { |
117 | - return function () use ($container) { |
|
117 | + return function() use ($container) { |
|
118 | 118 | $container['mongodbs.options.initializer'](); |
119 | 119 | |
120 | 120 | $configs = new Container(); |
121 | 121 | |
122 | 122 | $addLogger = isset($container['logger']) && null !== $container['logger']; |
123 | 123 | foreach ($container['mongodbs.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 DoctrineMongoDbLogger( |
@@ -147,12 +147,12 @@ discard block |
||
147 | 147 | */ |
148 | 148 | private function getMongoDbsEventManagerDefinition(Container $container): \Closure |
149 | 149 | { |
150 | - return function () use ($container) { |
|
150 | + return function() use ($container) { |
|
151 | 151 | $container['mongodbs.options.initializer'](); |
152 | 152 | |
153 | 153 | $managers = new Container(); |
154 | 154 | foreach ($container['mongodbs.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 |
||
167 | 167 | */ |
168 | 168 | private function getMongoDbDefinition(Container $container): \Closure |
169 | 169 | { |
170 | - return function () use ($container) { |
|
170 | + return function() use ($container) { |
|
171 | 171 | $dbs = $container['mongodbs']; |
172 | 172 | |
173 | 173 | return $dbs[$container['mongodbs.default']]; |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | */ |
181 | 181 | private function getMongoDbConfigDefinition(Container $container): \Closure |
182 | 182 | { |
183 | - return function () use ($container) { |
|
183 | + return function() use ($container) { |
|
184 | 184 | $dbs = $container['mongodbs.config']; |
185 | 185 | |
186 | 186 | return $dbs[$container['mongodbs.default']]; |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | */ |
194 | 194 | private function getMongoDbEventManagerDefinition(Container $container): \Closure |
195 | 195 | { |
196 | - return function () use ($container) { |
|
196 | + return function() use ($container) { |
|
197 | 197 | $dbs = $container['mongodbs.event_manager']; |
198 | 198 | |
199 | 199 | return $dbs[$container['mongodbs.default']]; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | private function getDbsOptionsInitializerDefinition(Container $container): \Closure |
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 |
||
88 | 88 | */ |
89 | 89 | private function getDbsDefinition(Container $container): \Closure |
90 | 90 | { |
91 | - return function () use ($container) { |
|
91 | + return function() use ($container) { |
|
92 | 92 | $container['dbs.options.initializer'](); |
93 | 93 | |
94 | 94 | $dbs = new Container(); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $manager = $container['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,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | private function getDbsConfigDefinition(Container $container): \Closure |
120 | 120 | { |
121 | - return function () use ($container) { |
|
121 | + return function() use ($container) { |
|
122 | 122 | $container['dbs.options.initializer'](); |
123 | 123 | |
124 | 124 | $addLogger = isset($container['logger']) && null !== $container['logger'] |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | |
128 | 128 | $configs = new Container(); |
129 | 129 | foreach ($container['dbs.options'] as $name => $options) { |
130 | - $configs[$name] = function () use ($addLogger, $container, $stopwatch) { |
|
130 | + $configs[$name] = function() use ($addLogger, $container, $stopwatch) { |
|
131 | 131 | $config = new Configuration(); |
132 | 132 | if ($addLogger) { |
133 | 133 | $config->setSQLLogger( |
@@ -150,12 +150,12 @@ discard block |
||
150 | 150 | */ |
151 | 151 | private function getDbsEventManagerDefinition(Container $container): \Closure |
152 | 152 | { |
153 | - return function () use ($container) { |
|
153 | + return function() use ($container) { |
|
154 | 154 | $container['dbs.options.initializer'](); |
155 | 155 | |
156 | 156 | $managers = new Container(); |
157 | 157 | foreach ($container['dbs.options'] as $name => $options) { |
158 | - $managers[$name] = function () { |
|
158 | + $managers[$name] = function() { |
|
159 | 159 | return new EventManager(); |
160 | 160 | }; |
161 | 161 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | */ |
171 | 171 | private function getDbDefinition(Container $container): \Closure |
172 | 172 | { |
173 | - return function () use ($container) { |
|
173 | + return function() use ($container) { |
|
174 | 174 | $dbs = $container['dbs']; |
175 | 175 | |
176 | 176 | return $dbs[$container['dbs.default']]; |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | */ |
184 | 184 | private function getDbConfigDefinition(Container $container): \Closure |
185 | 185 | { |
186 | - return function () use ($container) { |
|
186 | + return function() use ($container) { |
|
187 | 187 | $dbs = $container['dbs.config']; |
188 | 188 | |
189 | 189 | return $dbs[$container['dbs.default']]; |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | */ |
197 | 197 | private function getDbEventManagerDefinition(Container $container): \Closure |
198 | 198 | { |
199 | - return function () use ($container) { |
|
199 | + return function() use ($container) { |
|
200 | 200 | $dbs = $container['dbs.event_manager']; |
201 | 201 | |
202 | 202 | return $dbs[$container['dbs.default']]; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | private function getOrmEmsOptionsInitializerDefinition(Container $container): \Closure |
105 | 105 | { |
106 | - return $container->protect(function () use ($container) { |
|
106 | + return $container->protect(function() use ($container) { |
|
107 | 107 | static $initialized = false; |
108 | 108 | |
109 | 109 | if ($initialized) { |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | private function getOrmEmsDefinition(Container $container): \Closure |
140 | 140 | { |
141 | - return function () use ($container) { |
|
141 | + return function() use ($container) { |
|
142 | 142 | $container['orm.ems.options.initializer'](); |
143 | 143 | |
144 | 144 | $ems = new Container(); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | $config = $container['orm.ems.config'][$name]; |
151 | 151 | } |
152 | 152 | |
153 | - $ems[$name] = function () use ($container, $options, $config) { |
|
153 | + $ems[$name] = function() use ($container, $options, $config) { |
|
154 | 154 | return EntityManager::create( |
155 | 155 | $container['dbs'][$options['connection']], |
156 | 156 | $config, |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | */ |
171 | 171 | private function getOrmEmsConfigServiceProvider(Container $container): \Closure |
172 | 172 | { |
173 | - return function () use ($container) { |
|
173 | + return function() use ($container) { |
|
174 | 174 | $container['orm.ems.options.initializer'](); |
175 | 175 | |
176 | 176 | $configs = new Container(); |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | string $name, |
195 | 195 | array $options |
196 | 196 | ): \Closure { |
197 | - return function () use ($container, $name, $options) { |
|
197 | + return function() use ($container, $name, $options) { |
|
198 | 198 | $config = new Configuration(); |
199 | 199 | |
200 | 200 | $config->setProxyDir($container['orm.proxies_dir']); |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | private function getOrmMappingDriverChainDefinition(Container $container): \Closure |
248 | 248 | { |
249 | - return $container->protect(function (string $name, Configuration $config, array $mappings) use ($container) { |
|
249 | + return $container->protect(function(string $name, Configuration $config, array $mappings) use ($container) { |
|
250 | 250 | $container['orm.ems.options.initializer'](); |
251 | 251 | |
252 | 252 | $cacheInstanceKey = 'orm.mapping_driver_chain.instances.'.$name; |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | */ |
289 | 289 | private function getOrmMappingDriverChainFactoryDefinition(Container $container): \Closure |
290 | 290 | { |
291 | - return $container->protect(function () use ($container) { |
|
291 | + return $container->protect(function() use ($container) { |
|
292 | 292 | return new MappingDriverChain(); |
293 | 293 | }); |
294 | 294 | } |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | */ |
301 | 301 | private function getOrmMappingDriverFactoryAnnotation(Container $container): \Closure |
302 | 302 | { |
303 | - return $container->protect(function (array $entity, Configuration $config) { |
|
303 | + return $container->protect(function(array $entity, Configuration $config) { |
|
304 | 304 | $useSimpleAnnotationReader = $entity['use_simple_annotation_reader'] ?? true; |
305 | 305 | |
306 | 306 | return $config->newDefaultAnnotationDriver( |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | */ |
318 | 318 | private function getOrmMappingDriverFactoryYaml(Container $container): \Closure |
319 | 319 | { |
320 | - return $container->protect(function (array $entity, Configuration $config) { |
|
320 | + return $container->protect(function(array $entity, Configuration $config) { |
|
321 | 321 | return new YamlDriver($entity['path']); |
322 | 322 | }); |
323 | 323 | } |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | */ |
330 | 330 | private function getOrmMappingDriverFactorySimpleYaml(Container $container): \Closure |
331 | 331 | { |
332 | - return $container->protect(function (array $entity, Configuration $config) { |
|
332 | + return $container->protect(function(array $entity, Configuration $config) { |
|
333 | 333 | return new SimplifiedYamlDriver([$entity['path'] => $entity['namespace']]); |
334 | 334 | }); |
335 | 335 | } |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | */ |
342 | 342 | private function getOrmMappingDriverFactoryXml(Container $container): \Closure |
343 | 343 | { |
344 | - return $container->protect(function (array $entity, Configuration $config) { |
|
344 | + return $container->protect(function(array $entity, Configuration $config) { |
|
345 | 345 | return new XmlDriver($entity['path']); |
346 | 346 | }); |
347 | 347 | } |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | */ |
354 | 354 | private function getOrmMappingDriverFactorySimpleXml(Container $container): \Closure |
355 | 355 | { |
356 | - return $container->protect(function (array $entity, Configuration $config) { |
|
356 | + return $container->protect(function(array $entity, Configuration $config) { |
|
357 | 357 | return new SimplifiedXmlDriver([$entity['path'] => $entity['namespace']]); |
358 | 358 | }); |
359 | 359 | } |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | */ |
366 | 366 | private function getOrmMappingDriverFactoryPhp(Container $container): \Closure |
367 | 367 | { |
368 | - return $container->protect(function (array $entity, Configuration $config) { |
|
368 | + return $container->protect(function(array $entity, Configuration $config) { |
|
369 | 369 | return new StaticPHPDriver($entity['path']); |
370 | 370 | }); |
371 | 371 | } |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | */ |
378 | 378 | private function getOrmCacheLocatorDefinition(Container $container): \Closure |
379 | 379 | { |
380 | - return $container->protect(function (string $name, string $cacheName, array $options) use ($container) { |
|
380 | + return $container->protect(function(string $name, string $cacheName, array $options) use ($container) { |
|
381 | 381 | $cacheNameKey = $cacheName.'_cache'; |
382 | 382 | |
383 | 383 | if (!isset($options[$cacheNameKey])) { |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | */ |
419 | 419 | private function getOrmCacheFactoryDefinition(Container $container): \Closure |
420 | 420 | { |
421 | - return $container->protect(function (string $driver, array $cacheOptions) use ($container) { |
|
421 | + return $container->protect(function(string $driver, array $cacheOptions) use ($container) { |
|
422 | 422 | $cacheFactoryKey = 'orm.cache.factory.'.$driver; |
423 | 423 | if (!isset($container[$cacheFactoryKey])) { |
424 | 424 | throw new \RuntimeException( |
@@ -437,7 +437,7 @@ discard block |
||
437 | 437 | */ |
438 | 438 | private function getOrmCacheFactoryApcuDefinition(Container $container): \Closure |
439 | 439 | { |
440 | - return $container->protect(function (array $cacheOptions) use ($container) { |
|
440 | + return $container->protect(function(array $cacheOptions) use ($container) { |
|
441 | 441 | return new ApcuCache(); |
442 | 442 | }); |
443 | 443 | } |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | */ |
450 | 450 | private function getOrmCacheFactoryArrayDefinition(Container $container): \Closure |
451 | 451 | { |
452 | - return $container->protect(function (array $cacheOptions) use ($container) { |
|
452 | + return $container->protect(function(array $cacheOptions) use ($container) { |
|
453 | 453 | return new ArrayCache(); |
454 | 454 | }); |
455 | 455 | } |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | */ |
462 | 462 | private function getOrmCacheFactoryFilesystemDefinition(Container $container): \Closure |
463 | 463 | { |
464 | - return $container->protect(function (array $cacheOptions) { |
|
464 | + return $container->protect(function(array $cacheOptions) { |
|
465 | 465 | if (empty($cacheOptions['path'])) { |
466 | 466 | throw new \RuntimeException('FilesystemCache path not defined'); |
467 | 467 | } |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | */ |
483 | 483 | private function getOrmCacheFactoryMemcachedDefinition(Container $container): \Closure |
484 | 484 | { |
485 | - return $container->protect(function (array $cacheOptions) use ($container) { |
|
485 | + return $container->protect(function(array $cacheOptions) use ($container) { |
|
486 | 486 | if (empty($cacheOptions['host']) || empty($cacheOptions['port'])) { |
487 | 487 | throw new \RuntimeException('Host and port options need to be specified for memcached cache'); |
488 | 488 | } |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | */ |
505 | 505 | private function getOrmCacheFactoryRedisDefinition(Container $container): \Closure |
506 | 506 | { |
507 | - return $container->protect(function (array $cacheOptions) use ($container) { |
|
507 | + return $container->protect(function(array $cacheOptions) use ($container) { |
|
508 | 508 | if (empty($cacheOptions['host']) || empty($cacheOptions['port'])) { |
509 | 509 | throw new \RuntimeException('Host and port options need to be specified for redis cache'); |
510 | 510 | } |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | */ |
531 | 531 | private function getOrmCacheFactoryXCacheDefinition(Container $container): \Closure |
532 | 532 | { |
533 | - return $container->protect(function (array $cacheOptions) use ($container) { |
|
533 | + return $container->protect(function(array $cacheOptions) use ($container) { |
|
534 | 534 | return new XcacheCache(); |
535 | 535 | }); |
536 | 536 | } |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | */ |
543 | 543 | private function getOrmNamingStrategyDefinition(Container $container): \Closure |
544 | 544 | { |
545 | - return function () use ($container) { |
|
545 | + return function() use ($container) { |
|
546 | 546 | return new DefaultNamingStrategy(); |
547 | 547 | }; |
548 | 548 | } |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | */ |
555 | 555 | private function getOrmQuoteStrategyDefinition(Container $container): \Closure |
556 | 556 | { |
557 | - return function () use ($container) { |
|
557 | + return function() use ($container) { |
|
558 | 558 | return new DefaultQuoteStrategy(); |
559 | 559 | }; |
560 | 560 | } |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | */ |
567 | 567 | private function getOrmEntityListenerResolverDefinition(Container $container): \Closure |
568 | 568 | { |
569 | - return function () use ($container) { |
|
569 | + return function() use ($container) { |
|
570 | 570 | return new DefaultEntityListenerResolver(); |
571 | 571 | }; |
572 | 572 | } |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | */ |
579 | 579 | private function getOrmRepositoryFactoryDefinition(Container $container): \Closure |
580 | 580 | { |
581 | - return function () use ($container) { |
|
581 | + return function() use ($container) { |
|
582 | 582 | return new DefaultRepositoryFactory(); |
583 | 583 | }; |
584 | 584 | } |
@@ -590,7 +590,7 @@ discard block |
||
590 | 590 | */ |
591 | 591 | private function getOrmSecondLevelCacheConfigurationDefinition(Container $container): \Closure |
592 | 592 | { |
593 | - return function () use ($container) { |
|
593 | + return function() use ($container) { |
|
594 | 594 | return new CacheConfiguration(); |
595 | 595 | }; |
596 | 596 | } |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | */ |
603 | 603 | private function getOrmEmDefinition(Container $container): \Closure |
604 | 604 | { |
605 | - return function () use ($container) { |
|
605 | + return function() use ($container) { |
|
606 | 606 | $ems = $container['orm.ems']; |
607 | 607 | |
608 | 608 | return $ems[$container['orm.ems.default']]; |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | */ |
617 | 617 | private function getOrmEmConfigDefinition(Container $container): \Closure |
618 | 618 | { |
619 | - return function () use ($container) { |
|
619 | + return function() use ($container) { |
|
620 | 620 | $configs = $container['orm.ems.config']; |
621 | 621 | |
622 | 622 | return $configs[$container['orm.ems.default']]; |