Passed
Push — master ( 8c8b29...743be5 )
by Iulian
03:02 queued 10s
created
Twig/MixExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 
84 84
             if (!file_exists($manifestPath)) {
85 85
                 throw new \Exception(
86
-                    'The Laravel Mix manifest file does not exist. ' .
86
+                    'The Laravel Mix manifest file does not exist. '.
87 87
                     'Please run "npm run webpack" and try again.'
88 88
                 );
89 89
             }
Please login to merge, or discard this patch.
Command/ElixirMixCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
         try {
42 42
             $fs = new Filesystem();
43 43
 
44
-            $packageContent = realpath(dirname(__FILE__)) . '/../package.json';
44
+            $packageContent = realpath(dirname(__FILE__)).'/../package.json';
45 45
             $packagePath = sprintf('%s%s', $rootDir, 'package.json');
46 46
             $fs->copy($packageContent, $packagePath);
47 47
 
48
-            $webpackMixContent = realpath(dirname(__FILE__)) . '/../webpack.mix.js.dist';
48
+            $webpackMixContent = realpath(dirname(__FILE__)).'/../webpack.mix.js.dist';
49 49
             $webpackMixPath = sprintf('%s%s', $rootDir, 'webpack.mix.js');
50 50
             $fs->copy($webpackMixContent, $webpackMixPath);
51 51
         } catch (IOExceptionInterface $e) {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     private function writeError(OutputInterface $output, $error)
65 65
     {
66
-        return $output->writeln('<error>' . $error . '</error>');
66
+        return $output->writeln('<error>'.$error.'</error>');
67 67
     }
68 68
 
69 69
     /**
Please login to merge, or discard this patch.
DependencyInjection/IulyanpElixirMixExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
         $container->setParameter('web_dir', $config['web_dir']);
26 26
 
27
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
27
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
28 28
         $loader->load('services.yml');
29 29
     }
30 30
 }
Please login to merge, or discard this patch.