Completed
Push — symfony-3.3 ( 7e5783...b87070 )
by Kamil
20:59
created
app/migrations/Version20170109143010.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
         $defaultLocale = $this->container->getParameter('locale');
36 36
 
37 37
         $this->addSql('ALTER TABLE sylius_product_attribute_value ADD locale_code VARCHAR(255) NOT NULL');
38
-        $this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "'.$defaultLocale.'"');
38
+        $this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "' . $defaultLocale . '"');
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Payment/RandomInvoiceNumberGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
      */
26 26
     public function generate(OrderInterface $order, PaymentInterface $payment)
27 27
     {
28
-        return mt_rand(1, 100000).'-'.mt_rand(1, 100000);
28
+        return mt_rand(1, 100000) . '-' . mt_rand(1, 100000);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
Bundle/PromotionBundle/DependencyInjection/SyliusPromotionExtension.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
     public function load(array $config, ContainerBuilder $container)
28 28
     {
29 29
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
30
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
30
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
31 31
 
32 32
         $loader->load('services.xml');
33 33
         $loader->load(sprintf('services/integrations/%s.xml', $config['driver']));
Please login to merge, or discard this patch.
src/Sylius/Bundle/PromotionBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 
12 12
 use Doctrine\Common\Annotations\AnnotationRegistry;
13 13
 
14
-$loader = require __DIR__.'/../../vendor/autoload.php';
14
+$loader = require __DIR__ . '/../../vendor/autoload.php';
15 15
 
16
-require __DIR__.'/AppKernel.php';
16
+require __DIR__ . '/AppKernel.php';
17 17
 
18 18
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
19 19
 
Please login to merge, or discard this patch.
Bundle/TaxonomyBundle/DependencyInjection/SyliusTaxonomyExtension.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
     public function load(array $config, ContainerBuilder $container)
28 28
     {
29 29
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
30
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
30
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
31 31
 
32 32
         $loader->load(sprintf('services/integrations/%s.xml', $config['driver']));
33 33
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/DependencyInjection/SyliusUserExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     public function load(array $config, ContainerBuilder $container)
42 42
     {
43 43
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
44
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
44
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
45 45
 
46 46
         $loader->load(sprintf('services/integrations/%s.xml', $config['driver']));
47 47
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         foreach ($resources as $variableName => $variableConfig) {
67 67
             foreach ($variableConfig as $resourceName => $resourceConfig) {
68 68
                 if (is_array($resourceConfig)) {
69
-                    $resolvedResources[$variableName.'_'.$resourceName] = $resourceConfig;
69
+                    $resolvedResources[$variableName . '_' . $resourceName] = $resourceConfig;
70 70
                 }
71 71
             }
72 72
         }
Please login to merge, or discard this patch.
Sylius/Bundle/MailerBundle/DependencyInjection/SyliusMailerExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 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
         $configFiles = [
34 34
             'services.xml',
Please login to merge, or discard this patch.
Bundle/FixturesBundle/DependencyInjection/SyliusFixturesExtension.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
         $loader->load('services.xml');
34 34
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function prepend(ContainerBuilder $container)
42 42
     {
43
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
43
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
44 44
 
45 45
         $extensionsNamesToConfigurationFiles = [
46 46
             'doctrine' => 'doctrine/orm.xml',
Please login to merge, or discard this patch.
Bundle/AttributeBundle/DependencyInjection/SyliusAttributeExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     public function load(array $config, ContainerBuilder $container)
28 28
     {
29 29
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
30
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
30
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
31 31
 
32 32
         $loader->load('services.xml');
33 33
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         foreach ($resources as $subjectName => $subjectConfig) {
49 49
             foreach ($subjectConfig as $resourceName => $resourceConfig) {
50 50
                 if (is_array($resourceConfig)) {
51
-                    $resolvedResources[$subjectName.'_'.$resourceName] = $resourceConfig;
51
+                    $resolvedResources[$subjectName . '_' . $resourceName] = $resourceConfig;
52 52
                 }
53 53
             }
54 54
         }
Please login to merge, or discard this patch.