Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
Bundles/Url/src/Spryker/Shared/Url/UrlBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function fillNullValues($hasQueryParameter, array $mca)
44 44
     {
45
-        $mapCallback = function ($value) use ($hasQueryParameter) {
45
+        $mapCallback = function($value) use ($hasQueryParameter) {
46 46
             return ($value) ?: (($hasQueryParameter) ? 'index' : null);
47 47
         };
48 48
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     protected function removeNullValues(array $mca)
59 59
     {
60
-        $filterCallback = function ($value) {
60
+        $filterCallback = function($value) {
61 61
             return $value !== null;
62 62
         };
63 63
 
Please login to merge, or discard this patch.
ZedRequest/src/Spryker/Yves/ZedRequest/Plugin/ZedRequestLogPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getCallable()
35 35
     {
36
-        return Middleware::mapRequest(function (RequestInterface $request) {
36
+        return Middleware::mapRequest(function(RequestInterface $request) {
37 37
             if ($request->hasHeader(AbstractHttpClient::HEADER_HOST_YVES)) {
38 38
                 $this->getLogger()->info(sprintf(
39 39
                     'Transfer request [%s] %s',
Please login to merge, or discard this patch.
ZedRequest/src/Spryker/Yves/ZedRequest/Plugin/ZedResponseLogPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getCallable()
35 35
     {
36
-        return Middleware::mapResponse(function (ResponseInterface $response) {
36
+        return Middleware::mapResponse(function(ResponseInterface $response) {
37 37
             if ($response->hasHeader(AbstractHttpClient::HEADER_HOST_ZED)) {
38 38
                 $message = sprintf(
39 39
                     'Transfer response [%s]',
Please login to merge, or discard this patch.
Bundles/Application/src/Spryker/Yves/Application/Routing/AbstractRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
             $url = $wantedScheme . '://' . $this->context->getHost() . $pathInfo;
83 83
 
84 84
             return [
85
-                '_controller' => function ($url) {
85
+                '_controller' => function($url) {
86 86
                     return new RedirectResponse($url, 301);
87 87
                 },
88 88
                 '_route' => null,
Please login to merge, or discard this patch.
src/Spryker/Yves/Application/Plugin/Provider/CookieServiceProvider.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
     public function register(Application $app)
30 30
     {
31 31
         $this->app = $app;
32
-        $app['cookies'] = $app->share(function () {
32
+        $app['cookies'] = $app->share(function() {
33 33
             return new ArrayObject();
34 34
         });
35 35
     }
Please login to merge, or discard this patch.
Application/src/Spryker/Shared/Application/Routing/AbstractRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
             $url = $wantedScheme . '://' . $this->context->getHost() . $pathInfo;
83 83
 
84 84
             return [
85
-                '_controller' => function ($url) {
85
+                '_controller' => function($url) {
86 86
                     return new RedirectResponse($url, 301);
87 87
                 },
88 88
                 '_route' => null,
Please login to merge, or discard this patch.
Spryker/Zed/StockSalesConnector/StockSalesConnectorDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function provideCommunicationLayerDependencies(Container $container)
35 35
     {
36
-        $container[self::FACADE_STOCK] = function (Container $container) {
36
+        $container[self::FACADE_STOCK] = function(Container $container) {
37 37
             return new StockSalesConnectorToStockBridge($container->getLocator()->stock()->facade());
38 38
         };
39 39
 
Please login to merge, or discard this patch.
src/Spryker/Zed/Application/Business/Model/Twig/EnvironmentInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     protected function getFunction()
29 29
     {
30
-        return function ($currentController) {
30
+        return function($currentController) {
31 31
             $utilNetworkHost = new Host();
32 32
             $html = '<div class="zed:header__environment"><i class="icon-cogs"></i>'
33 33
                 . '<span>' . APPLICATION_ENV . '</span>'
Please login to merge, or discard this patch.
src/Spryker/Client/Calculation/CalculationDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     protected function addZedRequestClient(Container $container)
36 36
     {
37
-        $container[static::CLIENT_ZED_REQUEST] = function (Container $container) {
37
+        $container[static::CLIENT_ZED_REQUEST] = function(Container $container) {
38 38
             return $container->getLocator()->zedRequest()->client();
39 39
         };
40 40
 
Please login to merge, or discard this patch.