@@ -88,7 +88,6 @@ |
||
| 88 | 88 | * |
| 89 | 89 | * @param OutputInterface $output |
| 90 | 90 | * @param array $config |
| 91 | - * @param array $options |
|
| 92 | 91 | * |
| 93 | 92 | * @return Builder |
| 94 | 93 | */ |
@@ -31,17 +31,17 @@ |
||
| 31 | 31 | protected function execute(InputInterface $input, OutputInterface $output) |
| 32 | 32 | { |
| 33 | 33 | $outputDir = $this->getBuilder($output)->getConfig()->get('output.dir'); |
| 34 | - if ($this->fs->exists($this->getPath() . '/' . Serve::$tmpDir . '/output')) { |
|
| 35 | - $outputDir = file_get_contents($this->getPath() . '/' . Serve::$tmpDir . '/output'); |
|
| 34 | + if ($this->fs->exists($this->getPath().'/'.Serve::$tmpDir.'/output')) { |
|
| 35 | + $outputDir = file_get_contents($this->getPath().'/'.Serve::$tmpDir.'/output'); |
|
| 36 | 36 | } |
| 37 | 37 | // delete output dir |
| 38 | - if ($this->fs->exists($this->getPath() . '/' . $outputDir)) { |
|
| 39 | - $this->fs->remove($this->getPath() . '/' . $outputDir); |
|
| 38 | + if ($this->fs->exists($this->getPath().'/'.$outputDir)) { |
|
| 39 | + $this->fs->remove($this->getPath().'/'.$outputDir); |
|
| 40 | 40 | $output->writeln(sprintf("Output directory '%s' removed.", $outputDir)); |
| 41 | 41 | } |
| 42 | 42 | // delete local server temp files |
| 43 | - if ($this->fs->exists($this->getPath() . '/' . Serve::$tmpDir)) { |
|
| 44 | - $this->fs->remove($this->getPath() . '/' . Serve::$tmpDir); |
|
| 43 | + if ($this->fs->exists($this->getPath().'/'.Serve::$tmpDir)) { |
|
| 44 | + $this->fs->remove($this->getPath().'/'.Serve::$tmpDir); |
|
| 45 | 45 | $output->writeln('Temporary files deleted.'); |
| 46 | 46 | } |
| 47 | 47 | |