Completed
Push — master ( 1dd16d...1fb70a )
by
unknown
33s queued 11s
created
src/Spryker/Client/WishlistsRestApi/WishlistsRestApiDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     protected function addZedRequestClient(Container $container): Container
37 37
     {
38
-        $container->set(static::CLIENT_ZED_REQUEST, function (Container $container) {
38
+        $container->set(static::CLIENT_ZED_REQUEST, function(Container $container) {
39 39
             return new WishlistsRestApiToZedRequestClientBridge($container->getLocator()->zedRequest()->client());
40 40
         });
41 41
 
Please login to merge, or discard this patch.
src/Spryker/Zed/WishlistsRestApi/WishlistsRestApiDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function addWishlistPropelQuery(Container $container): Container
53 53
     {
54
-        $container[static::PROPEL_QUERY_WISHLIST] = function () {
54
+        $container[static::PROPEL_QUERY_WISHLIST] = function() {
55 55
             return SpyWishlistQuery::create();
56 56
         };
57 57
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function addWishlistFacade(Container $container): Container
67 67
     {
68
-        $container->set(static::FACADE_WISHLIST, function (Container $container) {
68
+        $container->set(static::FACADE_WISHLIST, function(Container $container) {
69 69
             return new WishlistsRestApiToWishlistFacadeBridge(
70 70
                 $container->getLocator()->wishlist()->facade()
71 71
             );
Please login to merge, or discard this patch.