Completed
Push — master ( 5f3a6a...30169a )
by Iulian
12:27
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
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configuration = new Configuration();
23 23
         $config = $this->processConfiguration($configuration, $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.