Completed
Push — symfony-console ( c96862...f4655c )
by Arnaud
02:14
created
src/Command/Command.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,6 @@
 block discarded – undo
88 88
      *
89 89
      * @param OutputInterface $output
90 90
      * @param array           $config
91
-     * @param array           $options
92 91
      *
93 92
      * @return Builder
94 93
      */
Please login to merge, or discard this patch.
src/Command/CommandClean.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,17 +31,17 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.