Completed
Push — theme-bundle ( 69304b...bce4cb )
by Kamil
18:15
created
src/Sylius/Bundle/SettingsBundle/Twig/SettingsExtension.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
     public function getFunctions()
40 40
     {
41 41
         return array(
42
-             new \Twig_SimpleFunction('sylius_settings_all', array($this, 'getSettings')),
43
-             new \Twig_SimpleFunction('sylius_settings_get', array($this, 'getSettingsParameter')),
44
-             new \Twig_SimpleFunction('sylius_settings_has', array($this, 'hasSettingsParameter')),
42
+                new \Twig_SimpleFunction('sylius_settings_all', array($this, 'getSettings')),
43
+                new \Twig_SimpleFunction('sylius_settings_get', array($this, 'getSettingsParameter')),
44
+                new \Twig_SimpleFunction('sylius_settings_has', array($this, 'hasSettingsParameter')),
45 45
         );
46 46
     }
47 47
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/RbacBundle/Form/Type/RoleEntityType.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
         parent::configureOptions($resolver);
28 28
 
29 29
         $resolver->setDefaults(array(
30
-            'query_builder' => function (EntityRepository $repository) {
30
+            'query_builder' => function(EntityRepository $repository) {
31 31
                 return $repository->createQueryBuilder('o')->orderBy('o.left', 'asc');
32 32
             },
33 33
         ));
Please login to merge, or discard this patch.
src/Sylius/Bundle/RbacBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -170,10 +170,10 @@  discard block
 block discarded – undo
170 170
                 ->arrayNode('roles_hierarchy')
171 171
                     ->useAttributeAsKey('id')
172 172
                     ->prototype('array')
173
-                        ->beforeNormalization()->ifString()->then(function ($v) { return array('value' => $v); })->end()
173
+                        ->beforeNormalization()->ifString()->then(function($v) { return array('value' => $v); })->end()
174 174
                         ->beforeNormalization()
175
-                            ->ifTrue(function ($v) { return is_array($v) && isset($v['value']); })
176
-                            ->then(function ($v) { return preg_split('/\s*,\s*/', $v['value']); })
175
+                            ->ifTrue(function($v) { return is_array($v) && isset($v['value']); })
176
+                            ->then(function($v) { return preg_split('/\s*,\s*/', $v['value']); })
177 177
                         ->end()
178 178
                         ->prototype('scalar')->end()
179 179
                     ->end()
@@ -198,10 +198,10 @@  discard block
 block discarded – undo
198 198
                     ->useAttributeAsKey('id')
199 199
                     ->prototype('array')
200 200
                         ->performNoDeepMerging()
201
-                        ->beforeNormalization()->ifString()->then(function ($v) { return array('value' => $v); })->end()
201
+                        ->beforeNormalization()->ifString()->then(function($v) { return array('value' => $v); })->end()
202 202
                         ->beforeNormalization()
203
-                            ->ifTrue(function ($v) { return is_array($v) && isset($v['value']); })
204
-                            ->then(function ($v) { return preg_split('/\s*,\s*/', $v['value']); })
203
+                            ->ifTrue(function($v) { return is_array($v) && isset($v['value']); })
204
+                            ->then(function($v) { return preg_split('/\s*,\s*/', $v['value']); })
205 205
                         ->end()
206 206
                         ->prototype('scalar')->end()
207 207
                     ->end()
Please login to merge, or discard this patch.
src/Sylius/Bundle/WebBundle/Controller/Frontend/Account/OrderController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
             200,
111 111
             array(
112 112
                 'Content-Type'        => 'application/pdf',
113
-                'Content-Disposition' => 'attachment; filename="' . $order->getNumber() . '.pdf"'
113
+                'Content-Disposition' => 'attachment; filename="'.$order->getNumber().'.pdf"'
114 114
             )
115 115
         );
116 116
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/WebBundle/Behat/WebContext.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -521,9 +521,9 @@
 block discarded – undo
521 521
         }
522 522
     }
523 523
 
524
-     /**
525
-      * @When /^I add option value "([^""]*)"$/
526
-      */
524
+        /**
525
+         * @When /^I add option value "([^""]*)"$/
526
+         */
527 527
     public function iAddOptionValue($optionValue)
528 528
     {
529 529
         $newItem = $this->addNewItemToFormCollection($this->getSession()->getPage(), 'option_values');
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected function waitForTabToActivate($tabContainer)
63 63
     {
64
-        $this->waitFor(function () use ($tabContainer) {
64
+        $this->waitFor(function() use ($tabContainer) {
65 65
             return false !== strpos($tabContainer->getAttribute('class'), 'active');
66 66
         });
67 67
     }
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
      */
754 754
     protected function getFormCollectionDiv(DocumentElement $page, $collectionName)
755 755
     {
756
-        return $page->find('css', 'div[data-form-type="collection"][id*="'. $collectionName .'"]');
756
+        return $page->find('css', 'div[data-form-type="collection"][id*="'.$collectionName.'"]');
757 757
     }
758 758
 
759 759
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/ProductBundle/Behat/ProductContext.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                 $attribute = explode(':', $data['attributes']);
50 50
 
51 51
                 $productAttribute = $this->findOneByName('product_attribute', trim($attribute[0]));
52
-                $attributeValue =  $this->getFactory('product_attribute_value')->createNew();
52
+                $attributeValue = $this->getFactory('product_attribute_value')->createNew();
53 53
 
54 54
                 $attributeValue->setAttribute($productAttribute);
55 55
                 $attributeValue->setValue($attribute[1]);
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         $archetype = $this->findOneByName('product_archetype_translation', $archetypeName);
135 135
 
136 136
         if (!$archetype->getLocale() === $locale) {
137
-            throw new \Exception('There is no translation for product archetype'. $archetypeName . ' in '.$locale . 'locale');
137
+            throw new \Exception('There is no translation for product archetype'.$archetypeName.' in '.$locale.'locale');
138 138
         }
139 139
     }
140 140
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
         $option->setName($name);
164 164
         $option->setPresentation($presentation ?: $name);
165 165
 
166
-        foreach(explode(',', $values) as $valueData) {
166
+        foreach (explode(',', $values) as $valueData) {
167 167
 
168 168
             $valueData = preg_split("[\\[|\\]]", $valueData, -1, PREG_SPLIT_NO_EMPTY);
169 169
             $optionValue = $optionValueFactory->createNew();
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         $product = $this->findOneByName('product_translation', $productName);
256 256
 
257 257
         if (!$product->getLocale() === $locale) {
258
-            throw new \Exception('There is no translation for product'. $productName . ' in '.$locale . 'locale');
258
+            throw new \Exception('There is no translation for product'.$productName.' in '.$locale.'locale');
259 259
         }
260 260
     }
261 261
 
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
         foreach ($calculatorConfiguration as $channelCode => $price) {
326 326
             $channel = $channelRepository->findOneBy(array('code' => $channelCode));
327 327
 
328
-            $finalCalculatorConfiguration[$channel->getId()] = (int)round($price * 100);
328
+            $finalCalculatorConfiguration[$channel->getId()] = (int) round($price * 100);
329 329
         }
330 330
 
331 331
         return $finalCalculatorConfiguration;
Please login to merge, or discard this patch.
src/Sylius/Bundle/CartBundle/Provider/CartProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         if ($cartIdentifier !== null) {
125 125
             $cart = $this->cartRepository->find($cartIdentifier);
126 126
 
127
-            if ($cart !== null ) {
127
+            if ($cart !== null) {
128 128
                 return $cart;
129 129
             }
130 130
         }
Please login to merge, or discard this patch.
src/Sylius/Bundle/SearchBundle/Indexer/OrmIndexer.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@
 block discarded – undo
244 244
             $func = 'get' . ucfirst($field);
245 245
             
246 246
             if (method_exists($element, $func)) {
247
-               $content .= $element->$func() . self::SPACER;
247
+                $content .= $element->$func() . self::SPACER;
248 248
             }
249 249
         }
250 250
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -241,10 +241,10 @@
 block discarded – undo
241 241
         // TODO maybe I can use the property accessor here
242 242
         $content = '';
243 243
         foreach (array_keys(array_slice($fields, 1)) as $field) {
244
-            $func = 'get' . ucfirst($field);
244
+            $func = 'get'.ucfirst($field);
245 245
             
246 246
             if (method_exists($element, $func)) {
247
-               $content .= $element->$func() . self::SPACER;
247
+               $content .= $element->$func().self::SPACER;
248 248
             }
249 249
         }
250 250
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/SearchBundle/spec/Indexer/OrmIndexerSpec.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
     {
29 29
         $this->beConstructedWith(
30
-            (Array)$config,
30
+            (Array) $config,
31 31
             $transformer
32 32
         );
33 33
     }
Please login to merge, or discard this patch.