Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
SprykerTest/Zed/ProductLabel/_support/ProductLabelPersistenceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Product/tests/SprykerTest/Zed/Product/_support/ProductPersistenceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
SprykerTest/Zed/ProductOption/_support/ProductOptionPersistenceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Zed/ProductRelation/_support/ProductRelationPersistenceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/ProductSet/_support/ProductSetPersistenceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
SprykerTest/Zed/Synchronization/_support/SynchronizationBusinessTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Console/tests/SprykerTest/Zed/Console/Business/Model/ConsoleTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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];
Please login to merge, or discard this patch.
ErrorHandler/Plugin/ServiceProvider/WhoopsErrorHandlerServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Bundles/Log/src/Spryker/Shared/Log/Handler/AbstractQueueHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.