Completed
Push — component-bundle ( 0f1f3e )
by Kamil
35:06
created
src/Sylius/Bundle/CoreBundle/Command/InstallCommand.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             ->setDescription('Installs Sylius in your preferred environment.')
56 56
             ->setHelp(<<<EOT
57 57
 The <info>%command.name%</info> command installs Sylius.
58
-EOT
58
+eot
59 59
             )
60 60
         ;
61 61
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
                     count($this->commands),
77 77
                     $command['message']
78 78
                 ));
79
-                $this->commandExecutor->runCommand('sylius:install:'.$command['command'], [], $output);
79
+                $this->commandExecutor->runCommand('sylius:install:' . $command['command'], [], $output);
80 80
             } catch (RuntimeException $exception) {
81 81
                 $errored = true;
82 82
             }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/CheckRequirementsCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             ->setDescription('Checks if all Sylius requirements are satisfied.')
28 28
             ->setHelp(<<<EOT
29 29
 The <info>%command.name%</info> command checks system requirements.
30
-EOT
30
+eot
31 31
             )
32 32
         ;
33 33
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallDatabaseCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             ->setDescription('Install Sylius database.')
28 28
             ->setHelp(<<<EOT
29 29
 The <info>%command.name%</info> command creates Sylius database.
30
-EOT
30
+eot
31 31
             )
32 32
         ;
33 33
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallSampleDataCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             ->setDescription('Install sample data into Sylius.')
30 30
             ->setHelp(<<<EOT
31 31
 The <info>%command.name%</info> command loads the sample data for Sylius.
32
-EOT
32
+eot
33 33
             )
34 34
         ;
35 35
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallAssetsCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             ->setDescription('Installs all Sylius assets.')
27 27
             ->setHelp(<<<EOT
28 28
 The <info>%command.name%</info> command downloads and installs all Sylius media assets.
29
-EOT
29
+eot
30 30
             )
31 31
         ;
32 32
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/DependencyInjection/SyliusCoreExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function load(array $config, ContainerBuilder $container)
55 55
     {
56 56
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
57
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
57
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
58 58
 
59 59
         $this->registerResources('sylius', $config['driver'], $config['resources'], $container);
60 60
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         $container->prependExtensionConfig('sylius_theme', ['context' => 'sylius.theme.context.channel_based']);
84 84
 
85
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
85
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
86 86
         $this->prependHwiOauth($container, $loader);
87 87
     }
88 88
 
Please login to merge, or discard this patch.
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/Tests/Functional/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-$loader = require __DIR__.'/../../../vendor/autoload.php';
12
+$loader = require __DIR__ . '/../../../vendor/autoload.php';
13 13
 
14
-require __DIR__.'/AppKernel.php';
14
+require __DIR__ . '/AppKernel.php';
15 15
 
16 16
 return $loader;
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.