@@ -83,7 +83,7 @@ |
||
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 | } |
@@ -41,11 +41,11 @@ discard block |
||
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 |
||
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 | /** |
@@ -24,7 +24,7 @@ |
||
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 | } |