Failed Conditions
Push — master ( 494e02...0ec8a9 )
by mark
68:47 queued 24:21
created
Bundles/CmsSlot/src/Spryker/Client/CmsSlot/CmsSlotDependencyProvider.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
     protected function addExternalDataProviderStrategyPlugins(Container $container): Container
35 35
     {
36
-        $container->set(static::EXTERNAL_DATA_PROVIDER_STRATEGY_PLUGINS, function () {
36
+        $container->set(static::EXTERNAL_DATA_PROVIDER_STRATEGY_PLUGINS, function() {
37 37
             return $this->getExternalDataProviderStrategyPlugins();
38 38
         });
39 39
 
Please login to merge, or discard this patch.
Zed/ZedRequest/Communication/Plugin/GatewayServiceProviderPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function register(Application $app)
54 54
     {
55
-        $app->extend('dispatcher', function (EventDispatcherInterface $eventDispatcher) {
55
+        $app->extend('dispatcher', function(EventDispatcherInterface $eventDispatcher) {
56 56
             $eventDispatcher->addListener(
57 57
                 KernelEvents::CONTROLLER,
58 58
                 [
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function boot(Application $app)
88 88
     {
89
-        $app->before(function (Request $request) {
89
+        $app->before(function(Request $request) {
90 90
             TransferServer::getInstance()->setRequest($request);
91 91
         });
92 92
     }
Please login to merge, or discard this patch.
Communication/Plugin/Strategy/AbstractSalesOrderThresholdStrategyPlugin.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
      * {@inheritDoc}
18 18
      *
19 19
      * @api
20
-
21 20
      * @return \Generated\Shared\Transfer\SalesOrderThresholdTypeTransfer
22 21
      */
23 22
     public function toTransfer(): SalesOrderThresholdTypeTransfer
Please login to merge, or discard this patch.
src/Spryker/Client/CompanyUsersRestApi/CompanyUsersRestApiClient.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
  */
17 17
 class CompanyUsersRestApiClient extends AbstractClient implements CompanyUsersRestApiClientInterface
18 18
 {
19
-   /**
20
-    * {@inheritDoc}
21
-    *
22
-    * @api
23
-    *
24
-    * @param \Generated\Shared\Transfer\CompanyUserCriteriaFilterTransfer $companyUserCriteriaFilterTransfer
25
-    *
26
-    * @return \Generated\Shared\Transfer\CompanyUserCollectionTransfer
27
-    */
19
+    /**
20
+     * {@inheritDoc}
21
+     *
22
+     * @api
23
+     *
24
+     * @param \Generated\Shared\Transfer\CompanyUserCriteriaFilterTransfer $companyUserCriteriaFilterTransfer
25
+     *
26
+     * @return \Generated\Shared\Transfer\CompanyUserCollectionTransfer
27
+     */
28 28
     public function getCompanyUserCollection(
29 29
         CompanyUserCriteriaFilterTransfer $companyUserCriteriaFilterTransfer
30 30
     ): CompanyUserCollectionTransfer {
Please login to merge, or discard this patch.
Zed/Router/Communication/Plugin/Application/RouterApplicationPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     protected function provideRouter(ContainerInterface $container): ContainerInterface
58 58
     {
59
-        $container->set(static::SERVICE_ROUTER, function () {
59
+        $container->set(static::SERVICE_ROUTER, function() {
60 60
             return $this->getFacade()->getRouter();
61 61
         });
62 62
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     protected function provideControllerResolver(ContainerInterface $container): ContainerInterface
93 93
     {
94
-        $container->set(static::SERVICE_CONTROLLER_RESOLVER, function () use ($container) {
94
+        $container->set(static::SERVICE_CONTROLLER_RESOLVER, function() use ($container) {
95 95
             return new ControllerResolver($container);
96 96
         });
97 97
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     protected function provideArgumentResolver(ContainerInterface $container): ContainerInterface
107 107
     {
108
-        $container->set(static::SERVICE_ARGUMENT_RESOLVER, function () {
108
+        $container->set(static::SERVICE_ARGUMENT_RESOLVER, function() {
109 109
             return new ArgumentResolver();
110 110
         });
111 111
 
Please login to merge, or discard this patch.
Router/src/Spryker/Zed/Router/Business/UrlMatcher/CompiledUrlMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         }
80 80
 
81 81
         return [
82
-            '_controller' => function ($url) {
82
+            '_controller' => function($url) {
83 83
                 return new RedirectResponse($url, 301);
84 84
             },
85 85
             '_route' => null,
Please login to merge, or discard this patch.
src/Spryker/Yves/Router/Plugin/Application/RouterApplicationPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     protected function provideRouter(ContainerInterface $container): ContainerInterface
59 59
     {
60
-        $container->set(static::SERVICE_ROUTER, function () {
60
+        $container->set(static::SERVICE_ROUTER, function() {
61 61
             return $this->getFactory()->createRouter();
62 62
         });
63 63
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     protected function provideControllerResolver(ContainerInterface $container): ContainerInterface
94 94
     {
95
-        $container->set(static::SERVICE_CONTROLLER_RESOLVER, function () use ($container) {
95
+        $container->set(static::SERVICE_CONTROLLER_RESOLVER, function() use ($container) {
96 96
             return new ControllerResolver($container);
97 97
         });
98 98
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     protected function provideArgumentResolver(ContainerInterface $container): ContainerInterface
108 108
     {
109
-        $container->set(static::SERVICE_ARGUMENT_RESOLVER, function () {
109
+        $container->set(static::SERVICE_ARGUMENT_RESOLVER, function() {
110 110
             return $this->getFactory()->createArgumentResolver();
111 111
         });
112 112
 
Please login to merge, or discard this patch.
Bundles/Router/src/Spryker/Yves/Router/RouterDependencyProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function addRouterPlugins(Container $container): Container
44 44
     {
45
-        $container->set(static::ROUTER_PLUGINS, function () {
45
+        $container->set(static::ROUTER_PLUGINS, function() {
46 46
             return $this->getRouterPlugins();
47 47
         });
48 48
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     protected function addRouterEnhancerPlugins(Container $container): Container
66 66
     {
67
-        $container->set(static::ROUTER_ENHANCER_PLUGINS, function () {
67
+        $container->set(static::ROUTER_ENHANCER_PLUGINS, function() {
68 68
             return $this->getRouterEnhancerPlugins();
69 69
         });
70 70
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     protected function addRouteProvider(Container $container): Container
88 88
     {
89
-        $container->set(static::ROUTER_ROUTE_PROVIDER, function () {
89
+        $container->set(static::ROUTER_ROUTE_PROVIDER, function() {
90 90
             return $this->getRouteProvider();
91 91
         });
92 92
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      */
109 109
     protected function addPostAddRouteManipulator(Container $container): Container
110 110
     {
111
-        $container->set(static::POST_ADD_ROUTE_MANIPULATOR, function () {
111
+        $container->set(static::POST_ADD_ROUTE_MANIPULATOR, function() {
112 112
             return $this->getPostAddRouteManipulator();
113 113
         });
114 114
 
Please login to merge, or discard this patch.
Bundles/Router/tests/SprykerTest/Shared/Router/_support/RouterTester.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     {
87 87
         $request = $this->getRequest();
88 88
         $request->attributes->set('_controller', [
89
-            function () {
89
+            function() {
90 90
                 return 'ControllerCallable';
91 91
             },
92 92
             'actionName',
Please login to merge, or discard this patch.