@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | use _generated\ProductLabelPersistenceTesterActions; |
22 | 22 | |
23 | - /** |
|
24 | - * Define custom actions here |
|
25 | - */ |
|
23 | + /** |
|
24 | + * Define custom actions here |
|
25 | + */ |
|
26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | use _generated\ProductPersistenceTesterActions; |
22 | 22 | |
23 | - /** |
|
24 | - * Define custom actions here |
|
25 | - */ |
|
23 | + /** |
|
24 | + * Define custom actions here |
|
25 | + */ |
|
26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | use _generated\ProductOptionPersistenceTesterActions; |
22 | 22 | |
23 | - /** |
|
24 | - * Define custom actions here |
|
25 | - */ |
|
23 | + /** |
|
24 | + * Define custom actions here |
|
25 | + */ |
|
26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | use _generated\ProductRelationPersistenceTesterActions; |
22 | 22 | |
23 | - /** |
|
24 | - * Define custom actions here |
|
25 | - */ |
|
23 | + /** |
|
24 | + * Define custom actions here |
|
25 | + */ |
|
26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | use _generated\ProductSetPersistenceTesterActions; |
22 | 22 | |
23 | - /** |
|
24 | - * Define custom actions here |
|
25 | - */ |
|
23 | + /** |
|
24 | + * Define custom actions here |
|
25 | + */ |
|
26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | use _generated\SynchronizationBusinessTesterActions; |
22 | 22 | |
23 | - /** |
|
24 | - * Define custom actions here |
|
25 | - */ |
|
23 | + /** |
|
24 | + * Define custom actions here |
|
25 | + */ |
|
26 | 26 | } |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | public function testPreRunPluginsWillExecutesBeforeConsoleCommands() |
55 | 55 | { |
56 | 56 | $container = new Container(); |
57 | - $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_PRE_RUN_HOOK] = function (Container $container) { |
|
57 | + $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_PRE_RUN_HOOK] = function(Container $container) { |
|
58 | 58 | $preRunPluginMock = $this->getPreRunPluginMock(); |
59 | 59 | |
60 | 60 | return [$preRunPluginMock]; |
61 | 61 | }; |
62 | 62 | |
63 | - $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_POST_RUN_HOOK] = function (Container $container) { |
|
63 | + $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_POST_RUN_HOOK] = function(Container $container) { |
|
64 | 64 | return []; |
65 | 65 | }; |
66 | 66 | |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | public function testPostRunPluginsWillExecutesBeforeConsoleCommands() |
77 | 77 | { |
78 | 78 | $container = new Container(); |
79 | - $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_PRE_RUN_HOOK] = function (Container $container) { |
|
79 | + $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_PRE_RUN_HOOK] = function(Container $container) { |
|
80 | 80 | return []; |
81 | 81 | }; |
82 | 82 | |
83 | - $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_POST_RUN_HOOK] = function (Container $container) { |
|
83 | + $container[ConsoleDependencyProvider::PLUGINS_CONSOLE_POST_RUN_HOOK] = function(Container $container) { |
|
84 | 84 | $postRunPluginMock = $this->getPostRunPluginMock(); |
85 | 85 | |
86 | 86 | return [$postRunPluginMock]; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $userPath = Config::get(ErrorHandlerConstants::USER_BASE_PATH, ''); |
52 | 52 | $handler = new PrettyPageHandler(); |
53 | 53 | if ($userPath) { |
54 | - $handler->setEditor(function ($file, $line) use ($userPath) { |
|
54 | + $handler->setEditor(function($file, $line) use ($userPath) { |
|
55 | 55 | $serverPath = Config::get(ErrorHandlerConstants::SERVER_BASE_PATH, '/data/shop/development/current'); |
56 | 56 | $file = str_replace($serverPath, $userPath, $file); |
57 | 57 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | */ |
78 | 78 | protected function getErrorLoggerCallbackHandler() |
79 | 79 | { |
80 | - return new CallbackHandler(function ($exception) { |
|
80 | + return new CallbackHandler(function($exception) { |
|
81 | 81 | ErrorLogger::getInstance()->log($exception); |
82 | 82 | }); |
83 | 83 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | $level = $this->level; |
44 | 44 | |
45 | - $records = array_filter($records, function ($record) use ($level) { |
|
45 | + $records = array_filter($records, function($record) use ($level) { |
|
46 | 46 | return ($record['level'] >= $level); |
47 | 47 | }); |
48 | 48 |