@@ -169,7 +169,7 @@ |
||
169 | 169 | 'config', |
170 | 170 | ]; |
171 | 171 | |
172 | - $callable = function ($a, $b) use ($map) { |
|
172 | + $callable = function($a, $b) use ($map) { |
|
173 | 173 | $keyA = in_array($a, $map) ? array_search($a, $map) : 999; |
174 | 174 | $keyB = in_array($b, $map) ? array_search($b, $map) : 999; |
175 | 175 |
@@ -366,7 +366,7 @@ |
||
366 | 366 | |
367 | 367 | $utilEncodingMock |
368 | 368 | ->method('decodeJson') |
369 | - ->willReturnCallback(function ($json, $assoc) { |
|
369 | + ->willReturnCallback(function($json, $assoc) { |
|
370 | 370 | return json_decode($json, $assoc); |
371 | 371 | }); |
372 | 372 |
@@ -90,7 +90,7 @@ |
||
90 | 90 | $url = $wantedScheme . '://' . $this->context->getHost() . $pathInfo; |
91 | 91 | |
92 | 92 | return [ |
93 | - '_controller' => function ($url) { |
|
93 | + '_controller' => function($url) { |
|
94 | 94 | return new RedirectResponse($url, 301); |
95 | 95 | }, |
96 | 96 | '_route' => null, |
@@ -784,7 +784,7 @@ |
||
784 | 784 | $timeoutModel = clone $this->timeout; |
785 | 785 | |
786 | 786 | foreach ($orderItems as $orderItem) { |
787 | - $this->handleDatabaseTransaction(function () use ($orderItem, $processes, $sourceStateBuffer, $timeoutModel, $log, $currentTime) { |
|
787 | + $this->handleDatabaseTransaction(function() use ($orderItem, $processes, $sourceStateBuffer, $timeoutModel, $log, $currentTime) { |
|
788 | 788 | $this->executeSaveOrderItemTransaction( |
789 | 789 | $orderItem, |
790 | 790 | $processes, |
@@ -62,13 +62,13 @@ |
||
62 | 62 | $this->testDataFileSystemRootDirectory = Configuration::dataDir() . static::ROOT_DIRECTORY; |
63 | 63 | |
64 | 64 | $container = new Container(); |
65 | - $container[FlysystemDependencyProvider::PLUGIN_COLLECTION_FILESYSTEM_BUILDER] = function (Container $container) { |
|
65 | + $container[FlysystemDependencyProvider::PLUGIN_COLLECTION_FILESYSTEM_BUILDER] = function(Container $container) { |
|
66 | 66 | return [ |
67 | 67 | new LocalFilesystemBuilderPlugin(), |
68 | 68 | ]; |
69 | 69 | }; |
70 | 70 | |
71 | - $container[FlysystemDependencyProvider::PLUGIN_COLLECTION_FLYSYSTEM] = function (Container $container) { |
|
71 | + $container[FlysystemDependencyProvider::PLUGIN_COLLECTION_FLYSYSTEM] = function(Container $container) { |
|
72 | 72 | return []; |
73 | 73 | }; |
74 | 74 |
@@ -71,12 +71,12 @@ |
||
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
74 | - $sortAlphabetically = function ($first, $second) { |
|
74 | + $sortAlphabetically = function($first, $second) { |
|
75 | 75 | return strcasecmp($first['name'], $second['name']) < 0; |
76 | 76 | }; |
77 | 77 | usort($rules, $sortAlphabetically); |
78 | 78 | |
79 | - $sortPriority = function ($first, $second) { |
|
79 | + $sortPriority = function($first, $second) { |
|
80 | 80 | return $first['priority'] - $second['priority']; |
81 | 81 | }; |
82 | 82 | usort($rules, $sortPriority); |
@@ -41,7 +41,7 @@ |
||
41 | 41 | { |
42 | 42 | $level = $this->level; |
43 | 43 | |
44 | - $records = array_filter($records, function ($record) use ($level) { |
|
44 | + $records = array_filter($records, function($record) use ($level) { |
|
45 | 45 | return ($record['level'] >= $level); |
46 | 46 | }); |
47 | 47 |
@@ -85,7 +85,7 @@ |
||
85 | 85 | protected function createNumber() |
86 | 86 | { |
87 | 87 | try { |
88 | - $idCurrent = $this->handleDatabaseTransaction(function () { |
|
88 | + $idCurrent = $this->handleDatabaseTransaction(function() { |
|
89 | 89 | return $this->createNumberTransaction(); |
90 | 90 | }); |
91 | 91 | } catch (Exception $e) { |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function register(Application $app) |
29 | 29 | { |
30 | 30 | $app['twig.global.variables'] = $app->share( |
31 | - $app->extend('twig.global.variables', function (array $variables) { |
|
31 | + $app->extend('twig.global.variables', function(array $variables) { |
|
32 | 32 | $variables += [ |
33 | 33 | 'environment' => APPLICATION_ENV, |
34 | 34 | 'store' => Store::getInstance()->getStoreName(), |