Passed
Push — master ( 7e7d16...d2790e )
by mark
56s
created
Gui/src/Spryker/Zed/Gui/Communication/Plugin/Twig/AssetsPathFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     protected function getFunction()
26 26
     {
27
-        return function ($path) {
27
+        return function($path) {
28 28
             $path = ltrim($path, '/');
29 29
 
30 30
             return '/assets/' . $path;
Please login to merge, or discard this patch.
Gui/src/Spryker/Zed/Gui/Communication/Plugin/Twig/ListGroupFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     protected function getFunction()
26 26
     {
27
-        return function (array $items) {
27
+        return function(array $items) {
28 28
             if (is_array(array_values($items)[0])) {
29 29
                 $html = '<div class="list-group">';
30 30
 
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
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     protected function getFunction()
26 26
     {
27
-        return function ($title, $content, $footer = null, $extraData = null) {
27
+        return function($title, $content, $footer = null, $extraData = null) {
28 28
             $extras = '';
29 29
             if (is_array($extraData)) {
30 30
                 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
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     protected function getFunction()
27 27
     {
28
-        return function ($url, array $query = [], array $options = []) {
28
+        return function($url, array $query = [], array $options = []) {
29 29
             $url = Url::generate($url, $query, $options);
30 30
             $html = $url->buildEscaped();
31 31
 
Please login to merge, or discard this patch.
Newsletter/src/Spryker/Client/Newsletter/NewsletterDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function provideServiceLayerDependencies(Container $container)
23 23
     {
24
-        $container[self::SERVICE_ZED] = function (Container $container) {
24
+        $container[self::SERVICE_ZED] = function(Container $container) {
25 25
             return $container->getLocator()->zedRequest()->client();
26 26
         };
27 27
 
Please login to merge, or discard this patch.
Oms/src/Spryker/Zed/Oms/Communication/Controller/IndexController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 
64 64
         $response = $this->getFacade()->drawProcess($processName, $highlightState, $format, $fontSize);
65 65
 
66
-        $callback = function () use ($response) {
66
+        $callback = function() use ($response) {
67 67
             echo $response;
68 68
         };
69 69
 
Please login to merge, or discard this patch.
Bundles/Sales/src/Spryker/Client/Sales/SalesDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function provideServiceLayerDependencies(Container $container)
23 23
     {
24
-        $container[self::SERVICE_ZED] = function (Container $container) {
24
+        $container[self::SERVICE_ZED] = function(Container $container) {
25 25
             return $container->getLocator()->zedRequest()->client();
26 26
         };
27 27
 
Please login to merge, or discard this patch.
SequenceNumber/src/Spryker/Zed/SequenceNumber/SequenceNumberConfig.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
     protected function mergeSettings(array $defaultSettingsArray, array $settingsArray)
45 45
     {
46
-        $settingsArray = array_filter($settingsArray, function ($value) {
46
+        $settingsArray = array_filter($settingsArray, function($value) {
47 47
             return ($value !== null);
48 48
         });
49 49
         $settingsArray += $defaultSettingsArray;
Please login to merge, or discard this patch.
Bundles/Shipment/src/Spryker/Client/Shipment/ShipmentDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@
 block discarded – undo
22 22
      */
23 23
     public function provideServiceLayerDependencies(Container $container)
24 24
     {
25
-        $container[self::SESSION] = function (Container $container) {
25
+        $container[self::SESSION] = function(Container $container) {
26 26
             return $container->getLocator()->session()->client();
27 27
         };
28 28
 
29
-        $container[self::SERVICE_ZED] = function (Container $container) {
29
+        $container[self::SERVICE_ZED] = function(Container $container) {
30 30
             return $container->getLocator()->zedRequest()->client();
31 31
         };
32 32
 
Please login to merge, or discard this patch.