Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Bundle/ThemeBundle/spec/Translation/ThemeAwareTranslatorSpec.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
  */
26 26
 final class ThemeAwareTranslatorSpec extends ObjectBehavior
27 27
 {
28
-    function let(TranslatorInterface $translator, ThemeContextInterface $themeContext) {
28
+    function let(TranslatorInterface $translator, ThemeContextInterface $themeContext)
29
+    {
29 30
         $translator->implement(TranslatorBagInterface::class);
30 31
 
31 32
         $this->beConstructedWith($translator, $themeContext);
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Templating/Locator/CachedTemplateLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,6 +118,6 @@
 block discarded – undo
118 118
      */
119 119
     private function getCacheKey(TemplateReferenceInterface $template, ThemeInterface $theme)
120 120
     {
121
-        return $template->getLogicalName().'|'.$theme->getName();
121
+        return $template->getLogicalName() . '|' . $theme->getName();
122 122
     }
123 123
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ProductBundle/Form/Type/ProductVariantMatchType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             $builder->add($option->getCode(), ProductOptionValueChoiceType::class, [
35 35
                 'label' => $option->getName(),
36 36
                 'option' => $option,
37
-                'property_path' => '['.$i.']',
37
+                'property_path' => '[' . $i . ']',
38 38
             ]);
39 39
         }
40 40
 
Please login to merge, or discard this patch.
Sylius/Bundle/ProductBundle/Form/Type/ProductOptionValueCollectionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             $builder->add((string) $option->getCode(), ProductOptionValueChoiceType::class, [
49 49
                 'label' => $option->getName() ?: $option->getCode(),
50 50
                 'option' => $option,
51
-                'property_path' => '['.$i.']',
51
+                'property_path' => '[' . $i . ']',
52 52
             ]);
53 53
         }
54 54
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/UiBundle/DependencyInjection/SyliusUiExtension.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 load(array $config, ContainerBuilder $container)
28 28
     {
29
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
29
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
30 30
         $loader->load('services.xml');
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/MoneyBundle/DependencyInjection/SyliusMoneyExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     public function load(array $config, ContainerBuilder $container)
29 29
     {
30 30
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
31
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
31
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
32 32
 
33 33
         $container->setParameter('sylius_money.locale', $config['locale']);
34 34
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         $container->prependExtensionConfig('sylius_currency', ['currency' => $config['currency']]);
51 51
 
52
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
52
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
53 53
         $loader->load('services/integrations/currency.xml');
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
Sylius/Bundle/ReviewBundle/DependencyInjection/SyliusReviewExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function load(array $config, ContainerBuilder $container)
33 33
     {
34 34
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
35
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
35
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
36 36
 
37 37
         $this->registerResources('sylius', $config['driver'], $this->resolveResources($config['resources'], $container), $container);
38 38
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         foreach ($resources as $subjectName => $subjectConfig) {
55 55
             foreach ($subjectConfig as $resourceName => $resourceConfig) {
56 56
                 if (is_array($resourceConfig)) {
57
-                    $resolvedResources[$subjectName.'_'.$resourceName] = $resourceConfig;
57
+                    $resolvedResources[$subjectName . '_' . $resourceName] = $resourceConfig;
58 58
                 }
59 59
             }
60 60
         }
Please login to merge, or discard this patch.
src/Sylius/Bundle/GridBundle/spec/Doctrine/PHPCRODM/DataSourceSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     ) {
74 74
         $this->shouldThrow(
75 75
             new \RuntimeException('Unknown restrict condition "foo"')
76
-        )->during('restrict', [ $comparison, 'foo' ]);
76
+        )->during('restrict', [$comparison, 'foo']);
77 77
     }
78 78
 
79 79
     function it_should_return_the_expression_builder(
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/DependencyInjection/SyliusAdminExtension.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 load(array $config, ContainerBuilder $container)
28 28
     {
29
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
29
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
30 30
 
31 31
         $loader->load('services.xml');
32 32
     }
Please login to merge, or discard this patch.