Passed
Pull Request — master (#2)
by Dominique
22:55
created
SprykerTest/Zed/ProductReview/_support/ProductReviewBusinessTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
         'updated_at',
33 33
     ];
34 34
 
35
-   /**
36
-    * Define custom actions here
37
-    */
35
+    /**
36
+     * Define custom actions here
37
+     */
38 38
 
39 39
     /**
40 40
      * Note: for MySQL compatibility
Please login to merge, or discard this patch.
FileSystem/src/Spryker/Service/FileSystem/FileSystemDependencyProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     protected function addFileSystemReaderPlugin(Container $container)
45 45
     {
46
-        $container[static::PLUGIN_READER] = function (Container $container) {
46
+        $container[static::PLUGIN_READER] = function(Container $container) {
47 47
             return new FileSystemReaderPlugin();
48 48
         };
49 49
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     protected function addFileSystemWriterPlugin(Container $container)
59 59
     {
60
-        $container[static::PLUGIN_WRITER] = function (Container $container) {
60
+        $container[static::PLUGIN_WRITER] = function(Container $container) {
61 61
             return new FileSystemWriterPlugin();
62 62
         };
63 63
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     protected function addFileSystemStreamPlugin(Container $container)
73 73
     {
74
-        $container[static::PLUGIN_STREAM] = function (Container $container) {
74
+        $container[static::PLUGIN_STREAM] = function(Container $container) {
75 75
             return new FileSystemStreamPlugin();
76 76
         };
77 77
 
Please login to merge, or discard this patch.
src/Spryker/Yves/Storage/Plugin/Provider/StorageCacheServiceProvider.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->finish(function (Request $request) use ($app) {
29
+        $app->finish(function(Request $request) use ($app) {
30 30
             if (isset($app[StorageConstants::STORAGE_CACHE_STRATEGY])) {
31 31
                 $this->getClient()->persistCacheForRequest($request, $app[StorageConstants::STORAGE_CACHE_STRATEGY]);
32 32
             }
Please login to merge, or discard this patch.
Spryker/Yves/Storage/Plugin/Provider/StorageRequestCacheServiceProvider.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
     public function register(Application $app)
29 29
     {
30
-        $app->finish(function (Request $request) {
30
+        $app->finish(function(Request $request) {
31 31
             $this->getClient()->persistCacheForRequest($request);
32 32
         });
33 33
     }
Please login to merge, or discard this patch.
src/Spryker/Client/Storage/ServiceProvider/StorageClientServiceProvider.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
     public function register(Application $app)
26 26
     {
27 27
         $containerGlobals = new ContainerGlobals();
28
-        $containerGlobals[static::CLIENT_STORAGE] = function () {
28
+        $containerGlobals[static::CLIENT_STORAGE] = function() {
29 29
             $container = new Container();
30 30
 
31 31
             return $container->getLocator()->storage()->client();
Please login to merge, or discard this patch.
Bundles/Storage/src/Spryker/Zed/Storage/StorageDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     protected function addStorageClient(Container $container)
48 48
     {
49
-        $container[self::CLIENT_STORAGE] = function (Container $container) {
49
+        $container[self::CLIENT_STORAGE] = function(Container $container) {
50 50
             return $container->getLocator()->storage()->client();
51 51
         };
52 52
     }
Please login to merge, or discard this patch.
Zed/CustomerUserConnectorGui/CustomerUserConnectorGuiDependencyProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     protected function addCustomerQueryContainer(Container $container)
30 30
     {
31
-        $container[static::QUERY_CONTAINER_CUSTOMER] = function (Container $container) {
31
+        $container[static::QUERY_CONTAINER_CUSTOMER] = function(Container $container) {
32 32
             return new CustomerUserConnectorGuiToCustomerQueryContainerBridge($container->getLocator()->customer()->queryContainer());
33 33
         };
34 34
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function addUserQueryContainer(Container $container)
44 44
     {
45
-        $container[static::QUERY_CONTAINER_USER] = function (Container $container) {
45
+        $container[static::QUERY_CONTAINER_USER] = function(Container $container) {
46 46
             return new CustomerUserConnectorGuiToUserQueryContainerBridge($container->getLocator()->user()->queryContainer());
47 47
         };
48 48
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     protected function addCustomerUserConnectorFacade(Container $container)
58 58
     {
59
-        $container[static::FACADE_CUSTOMER_USER_CONNECTOR] = function (Container $container) {
59
+        $container[static::FACADE_CUSTOMER_USER_CONNECTOR] = function(Container $container) {
60 60
             return new CustomerUserConnectorGuiToCustomerUserConnectorBridge($container->getLocator()->customerUserConnector()->facade());
61 61
         };
62 62
 
Please login to merge, or discard this patch.
CustomerUserConnectorGui/Communication/Form/CustomerUserConnectorForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,14 +102,14 @@
 block discarded – undo
102 102
         $builder
103 103
             ->get($fieldName)
104 104
             ->addModelTransformer(new CallbackTransformer(
105
-                function ($idsCustomerAsArray) {
105
+                function($idsCustomerAsArray) {
106 106
                     if (!count($idsCustomerAsArray)) {
107 107
                         return [];
108 108
                     }
109 109
 
110 110
                     return implode(',', $idsCustomerAsArray);
111 111
                 },
112
-                function ($idsCustomerAsCsv) {
112
+                function($idsCustomerAsCsv) {
113 113
                     if (empty($idsCustomerAsCsv)) {
114 114
                         return [];
115 115
                     }
Please login to merge, or discard this patch.
Bundles/Acl/src/Spryker/Zed/Acl/AclDependencyProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $container = $this->addFacadeUser($container);
31 31
         $container = $this->addAclQueryContainer($container);
32 32
 
33
-        $container[self::SERVICE_DATE_FORMATTER] = function (Container $container) {
33
+        $container[self::SERVICE_DATE_FORMATTER] = function(Container $container) {
34 34
             return $container->getLocator()->utilDateTime()->service();
35 35
         };
36 36
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function providePersistenceLayerDependencies(Container $container)
58 58
     {
59
-        $container[self::QUERY_CONTAINER_USER] = function (Container $container) {
59
+        $container[self::QUERY_CONTAINER_USER] = function(Container $container) {
60 60
             return $container->getLocator()->user()->queryContainer();
61 61
         };
62 62
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     protected function addFacadeUser(Container $container)
72 72
     {
73
-        $container[self::FACADE_USER] = function (Container $container) {
73
+        $container[self::FACADE_USER] = function(Container $container) {
74 74
             return new AclToUserBridge($container->getLocator()->user()->facade());
75 75
         };
76 76
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     protected function addAclQueryContainer(Container $container)
86 86
     {
87 87
         /** @deprecated Use getQueryContainer() directly for the own bundle's query container */
88
-        $container[self::QUERY_CONTAINER_ACL] = function (Container $container) {
88
+        $container[self::QUERY_CONTAINER_ACL] = function(Container $container) {
89 89
             return $container->getLocator()->acl()->queryContainer();
90 90
         };
91 91
 
Please login to merge, or discard this patch.