Completed
Pull Request — development (#2)
by Oleksandr
07:00
created
src/SprykerEco/Zed/Econda/EcondaDependencyProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,27 +31,27 @@
 block discarded – undo
31 31
      */
32 32
     public function provideBusinessLayerDependencies(Container $container)
33 33
     {
34
-        $container[static::FACADE_LOCALE] = function (Container $container) {
34
+        $container[static::FACADE_LOCALE] = function(Container $container) {
35 35
             return new EcondaToLocaleFacadeBridge($container->getLocator()->locale()->facade());
36 36
         };
37 37
 
38
-        $container[self::FACADE_PROPEL] = function (Container $container) {
38
+        $container[self::FACADE_PROPEL] = function(Container $container) {
39 39
             return new EcondaToPropelFacadeBridge($container->getLocator()->propel()->facade());
40 40
         };
41 41
 
42
-        $container[self::FACADE_PRICE_PRODUCT] = function (Container $container) {
42
+        $container[self::FACADE_PRICE_PRODUCT] = function(Container $container) {
43 43
             return new EcondaToPriceProductFacadeBridge($container->getLocator()->priceProduct()->facade());
44 44
         };
45 45
 
46
-        $container[self::QUERY_CONTAINER_PRODUCT_IMAGE] = function (Container $container) {
46
+        $container[self::QUERY_CONTAINER_PRODUCT_IMAGE] = function(Container $container) {
47 47
             return $container->getLocator()->productImage()->queryContainer();
48 48
         };
49 49
 
50
-        $container[self::QUERY_CONTAINER_PRODUCT_CATEGORY] = function (Container $container) {
50
+        $container[self::QUERY_CONTAINER_PRODUCT_CATEGORY] = function(Container $container) {
51 51
             return $container->getLocator()->productCategory()->queryContainer();
52 52
         };
53 53
 
54
-        $container[self::FILE_PLUGINS] = function () {
54
+        $container[self::FILE_PLUGINS] = function() {
55 55
             return [
56 56
                 'products' => new ProductsPlugin(),
57 57
                 'categories' => new CategoryPlugin(),
Please login to merge, or discard this patch.