Passed
Branch master (7a7cfe)
by Fabian
45:14
created
Bundles/Log/tests/SprykerTest/Shared/Log/_support/LogSharedTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\LogSharedTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
SprykerTest/Service/UtilSanitize/_support/UtilSanitizeServiceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\UtilSanitizeServiceTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
src/Spryker/Zed/CategoryDataFeed/CategoryDataFeedDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      */
44 44
     public function providePersistenceLayerDependencies(Container $container)
45 45
     {
46
-        $container[self::CATEGORY_QUERY_CONTAINER] = function (Container $container) {
46
+        $container[self::CATEGORY_QUERY_CONTAINER] = function(Container $container) {
47 47
             $categoryQueryContainer = $container->getLocator()
48 48
                 ->category()
49 49
                 ->queryContainer();
Please login to merge, or discard this patch.
Zed/CategoryDataFeed/_support/CategoryDataFeedPersistenceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\CategoryDataFeedPersistenceTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Bundles/Gui/src/Spryker/Zed/Gui/Communication/Plugin/Twig/PanelFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     protected function getFunction()
27 27
     {
28
-        return function ($title, $content, array $options = null, $footer = null) {
28
+        return function($title, $content, array $options = null, $footer = null) {
29 29
             $defaultOptions = [
30 30
                 'class' => 'default',
31 31
                 'id' => false,
Please login to merge, or discard this patch.
Spryker/Zed/Gui/Communication/Plugin/Twig/Buttons/ButtonGroupFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     protected function getFunction()
19 19
     {
20
-        return function ($buttons, $title, $options = []) {
20
+        return function($buttons, $title, $options = []) {
21 21
             if (!array_key_exists(ButtonGroupUrlGenerator::ICON, $options)) {
22 22
                 $options[ButtonGroupUrlGenerator::ICON] = $this->getDefaultIcon();
23 23
             }
Please login to merge, or discard this patch.
Zed/Gui/Communication/Plugin/Twig/Buttons/AbstractButtonFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     protected function getFunction()
31 31
     {
32
-        return function ($url, $title, $options = []) {
32
+        return function($url, $title, $options = []) {
33 33
             if (!array_key_exists(ButtonUrlGenerator::ICON, $options)) {
34 34
                 $options[ButtonUrlGenerator::ICON] = $this->getIcon();
35 35
             }
Please login to merge, or discard this patch.
Bundles/Gui/src/Spryker/Zed/Gui/Communication/Plugin/Twig/ModalFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     protected function getFunction()
27 27
     {
28
-        return function ($title, $content, $footer = null, $extraData = null) {
28
+        return function($title, $content, $footer = null, $extraData = null) {
29 29
             $extras = '';
30 30
             if (is_array($extraData)) {
31 31
                 foreach ($extraData as $key => $value) {
Please login to merge, or discard this patch.
Bundles/Gui/src/Spryker/Zed/Gui/Communication/Plugin/Twig/UrlFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     protected function getFunction()
28 28
     {
29
-        return function ($url, array $query = [], array $options = []) {
29
+        return function($url, array $query = [], array $options = []) {
30 30
             $url = Url::generate($url, $query, $options);
31 31
             $html = $url->buildEscaped();
32 32
 
Please login to merge, or discard this patch.