Passed
Push — master ( 7a7cfe...9ace4b )
by Mark
35:26
created
EventJournal/src/Spryker/Zed/EventJournal/Business/EventJournalFacade.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     public function saveEvent(EventInterface $event)
29 29
     {
30 30
         $this->getFactory()
31
-             ->createEventJournal()
32
-             ->saveEvent($event);
31
+                ->createEventJournal()
32
+                ->saveEvent($event);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
Spryker/Zed/Log/Communication/Plugin/ServiceProvider/LogServiceProvider.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
     public function register(Application $app)
28 28
     {
29
-        $app['monolog.level'] = function () {
29
+        $app['monolog.level'] = function() {
30 30
             return Config::get(LogConstants::LOG_LEVEL, Logger::ERROR);
31 31
         };
32 32
     }
Please login to merge, or discard this patch.
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.