Completed
Push — symfony-3.3 ( 7e5783...b87070 )
by Kamil
20:59
created
src/Sylius/Bundle/ThemeBundle/DependencyInjection/SyliusThemeExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function load(array $config, ContainerBuilder $container)
40 40
     {
41 41
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
42
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
42
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
43 43
         $loader->load('services.xml');
44 44
 
45 45
         if ($config['assets']['enabled']) {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function prepend(ContainerBuilder $container)
68 68
     {
69
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
69
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
70 70
 
71 71
         $this->prependTwig($container, $loader);
72 72
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Asset/Installer/AssetsInstaller.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function installAssets($targetDir, $symlinkMask)
80 80
     {
81 81
         // Create the bundles directory otherwise symlink will fail.
82
-        $targetDir = rtrim($targetDir, '/').'/bundles/';
82
+        $targetDir = rtrim($targetDir, '/') . '/bundles/';
83 83
         $this->filesystem->mkdir($targetDir);
84 84
 
85 85
         $effectiveSymlinkMask = $symlinkMask;
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
         /** @var SplFileInfo[] $finder */
140 140
         foreach ($finder as $originFile) {
141
-            $targetFile = $targetDir.'/'.$originFile->getRelativePathname();
141
+            $targetFile = $targetDir . '/' . $originFile->getRelativePathname();
142 142
             $targetFile = $this->pathResolver->resolve($targetFile, $theme);
143 143
 
144 144
             if (file_exists($targetFile) && AssetsInstallerInterface::HARD_COPY !== $symlinkMask) {
@@ -234,13 +234,13 @@  discard block
 block discarded – undo
234 234
         $sources = [];
235 235
 
236 236
         foreach ($themes as $theme) {
237
-            $sourceDir = $theme->getPath().'/'.$bundle->getName().'/public';
237
+            $sourceDir = $theme->getPath() . '/' . $bundle->getName() . '/public';
238 238
             if (is_dir($sourceDir)) {
239 239
                 $sources[] = $sourceDir;
240 240
             }
241 241
         }
242 242
 
243
-        $sourceDir = $bundle->getPath().'/Resources/public';
243
+        $sourceDir = $bundle->getPath() . '/Resources/public';
244 244
         if (is_dir($sourceDir)) {
245 245
             $sources[] = $sourceDir;
246 246
         }
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/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.
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.
Bundle/ResourceBundle/DependencyInjection/SyliusResourceExtension.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
         $loader->load('services.xml');
38 38
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             DriverProvider::get($metadata)->load($container, $metadata);
84 84
 
85 85
             if ($metadata->hasParameter('translation')) {
86
-                $alias = $alias.'_translation';
86
+                $alias = $alias . '_translation';
87 87
                 $resourceConfig = array_merge(['driver' => $resourceConfig['driver']], $resourceConfig['translation']);
88 88
 
89 89
                 $resources = $container->hasParameter('sylius.resources') ? $container->getParameter('sylius.resources') : [];
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filter/StringFilter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,13 +88,13 @@
 block discarded – undo
88 88
             case self::TYPE_NOT_EMPTY:
89 89
                 return $expressionBuilder->isNotNull($field);
90 90
             case self::TYPE_CONTAINS:
91
-                return $expressionBuilder->like($field, '%'.$value.'%');
91
+                return $expressionBuilder->like($field, '%' . $value . '%');
92 92
             case self::TYPE_NOT_CONTAINS:
93
-                return $expressionBuilder->notLike($field, '%'.$value.'%');
93
+                return $expressionBuilder->notLike($field, '%' . $value . '%');
94 94
             case self::TYPE_STARTS_WITH:
95
-                return $expressionBuilder->like($field, $value.'%');
95
+                return $expressionBuilder->like($field, $value . '%');
96 96
             case self::TYPE_ENDS_WITH:
97
-                return $expressionBuilder->like($field, '%'.$value);
97
+                return $expressionBuilder->like($field, '%' . $value);
98 98
             case self::TYPE_IN:
99 99
                 return $expressionBuilder->in($field, array_map('trim', explode(',', $value)));
100 100
             case self::TYPE_NOT_IN:
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/OrderContext.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 
388 388
             $this->itemQuantityModifier->modify($item, 1);
389 389
 
390
-            $order = $this->createOrder($customer, '#00000'.$i);
390
+            $order = $this->createOrder($customer, '#00000' . $i);
391 391
             $order->addItem($item);
392 392
 
393 393
             $this->checkoutUsing($order, $shippingMethod, clone $address, $paymentMethod);
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
         $total = $this->getPriceFromString($total);
487 487
 
488 488
         for ($i = 0; $i < $numberOfOrders; $i++) {
489
-            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#'.uniqid());
489
+            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#' . uniqid());
490 490
             $order->setState(OrderInterface::STATE_NEW); // Temporary, we should use checkout to place these orders.
491 491
             $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE);
492 492
 
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
         $total = $this->getPriceFromString($total);
514 514
 
515 515
         for ($i = 0; $i < $numberOfOrders; $i++) {
516
-            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#'.uniqid(), $product->getChannels()->first());
516
+            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#' . uniqid(), $product->getChannels()->first());
517 517
             $order->setState(OrderInterface::STATE_NEW);
518 518
             $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE);
519 519
 
@@ -738,7 +738,7 @@  discard block
 block discarded – undo
738 738
             $customer = $this->customerFactory->createNew();
739 739
             $customer->setEmail(sprintf('john%[email protected]', uniqid()));
740 740
             $customer->setFirstname('John');
741
-            $customer->setLastname('Doe'.$i);
741
+            $customer->setLastname('Doe' . $i);
742 742
 
743 743
             $customers[] = $customer;
744 744
 
Please login to merge, or discard this patch.