Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
Bundles/Acl/src/Spryker/Zed/Acl/Persistence/AclQueryContainer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         $query = $this->getFactory()->createUserHasRoleQuery();
149 149
 
150 150
         $query->filterByFkAclGroup($idGroup)
151
-              ->filterByFkUser($idUser);
151
+                ->filterByFkUser($idUser);
152 152
 
153 153
         return $query;
154 154
     }
Please login to merge, or discard this patch.
src/Spryker/Yves/Application/Plugin/Provider/YvesControllerProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     protected function createRedirectController($path, $name, $redirectPath, $status = 302)
143 143
     {
144 144
         $controller = $this->controllerCollection
145
-            ->match($path, function () use ($redirectPath, $status) {
145
+            ->match($path, function() use ($redirectPath, $status) {
146 146
                 return new RedirectResponse($redirectPath, $status);
147 147
             })
148 148
             ->bind($name);
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      */
192 192
     private function addJsonParsing(Controller $controller)
193 193
     {
194
-        $controller->before(function (Request $request) {
194
+        $controller->before(function(Request $request) {
195 195
             $isJson = (strpos($request->headers->get('Content-Type'), 'application/json') === 0);
196 196
             if ($isJson) {
197 197
                 $data = json_decode($request->getContent(), true);
Please login to merge, or discard this patch.
Bundles/Auth/src/Spryker/Zed/Auth/AuthDependencyProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function provideCommunicationLayerDependencies(Container $container)
26 26
     {
27
-        $container[self::FACADE_USER] = function (Container $container) {
27
+        $container[self::FACADE_USER] = function(Container $container) {
28 28
             return new AuthToUserBridge($container->getLocator()->user()->facade());
29 29
         };
30 30
 
@@ -38,15 +38,15 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function provideBusinessLayerDependencies(Container $container)
40 40
     {
41
-        $container[self::FACADE_USER] = function (Container $container) {
41
+        $container[self::FACADE_USER] = function(Container $container) {
42 42
             return new AuthToUserBridge($container->getLocator()->user()->facade());
43 43
         };
44 44
 
45
-        $container[self::PASSWORD_RESET_SENDER] = function (Container $container) {
45
+        $container[self::PASSWORD_RESET_SENDER] = function(Container $container) {
46 46
             return $this->getPasswordResetNotificationSender($container);
47 47
         };
48 48
 
49
-        $container[self::CLIENT_SESSION] = function (Container $container) {
49
+        $container[self::CLIENT_SESSION] = function(Container $container) {
50 50
             return $container->getLocator()->session()->client();
51 51
         };
52 52
 
Please login to merge, or discard this patch.
Bundles/Country/src/Spryker/Zed/Country/Business/Internal/Install.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
 
136 136
         $countries = array_filter(
137 137
             array_flip($countries),
138
-            function ($value) {
138
+            function($value) {
139 139
                 return preg_match('~^(?!' . implode('|', $this->countrySettings->getTerritoriesBlacklist()) . '$)[A-Z]{2}$~i', $value);
140 140
             }
141 141
         );
Please login to merge, or discard this patch.
Bundles/Discount/src/Spryker/Zed/Discount/DiscountConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
      */
183 183
     public function getAllowedCodeCharactersLength()
184 184
     {
185
-        $charactersLength = array_reduce($this->getVoucherCodeCharacters(), function ($length, $items) {
185
+        $charactersLength = array_reduce($this->getVoucherCodeCharacters(), function($length, $items) {
186 186
             $length += count($items);
187 187
 
188 188
             return $length;
Please login to merge, or discard this patch.
Bundles/Glossary/src/Spryker/Zed/Glossary/GlossaryDependencyProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function provideCommunicationLayerDependencies(Container $container)
32 32
     {
33
-        $container[self::FACADE_LOCALE] = function (Container $container) {
33
+        $container[self::FACADE_LOCALE] = function(Container $container) {
34 34
             return new GlossaryToLocaleBridge($container->getLocator()->locale()->facade());
35 35
         };
36 36
 
37
-        $container[self::PLUGIN_VALIDATOR] = function () {
37
+        $container[self::PLUGIN_VALIDATOR] = function() {
38 38
             return (new Pimple())->getApplication()['validator'];
39 39
         };
40 40
 
@@ -48,15 +48,15 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function provideBusinessLayerDependencies(Container $container)
50 50
     {
51
-        $container[self::FACADE_TOUCH] = function (Container $container) {
51
+        $container[self::FACADE_TOUCH] = function(Container $container) {
52 52
             return new GlossaryToTouchBridge($container->getLocator()->touch()->facade());
53 53
         };
54 54
 
55
-        $container[self::FACADE_LOCALE] = function (Container $container) {
55
+        $container[self::FACADE_LOCALE] = function(Container $container) {
56 56
             return new GlossaryToLocaleBridge($container->getLocator()->locale()->facade());
57 57
         };
58 58
 
59
-        $container[self::FACADE_MESSENGER] = function (Container $container) {
59
+        $container[self::FACADE_MESSENGER] = function(Container $container) {
60 60
             return new GlossaryToMessengerBridge($container->getLocator()->messenger()->facade());
61 61
         };
62 62
 
Please login to merge, or discard this patch.
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.