Completed
Pull Request — epic/2.0.0 (#37)
by Steven
03:03
created
src/Magestead/Command/Index/SetModeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $command = $this->getCommand(new Config($output), $mode);
36 36
         if ($command) {
37 37
             $output->writeln('<info>Setting index mode</info>');
38
-            $passedCommand = "vagrant ssh -c '". $command ."'";
38
+            $passedCommand = "vagrant ssh -c '".$command."'";
39 39
             return new ProcessCommand($passedCommand, $this->_projectPath, $output);
40 40
         }
41 41
 
Please login to merge, or discard this patch.
src/Magestead/Command/Index/StatusCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $output->writeln('<info>Getting index status</info>');
33 33
 
34 34
         $command = $this->getCommand(new Config($output));
35
-        $passedCommand = "vagrant ssh -c '". $command ."'";
35
+        $passedCommand = "vagrant ssh -c '".$command."'";
36 36
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
37 37
     }
38 38
 
Please login to merge, or discard this patch.
src/Magestead/Command/Index/ShowModeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         $command = $this->getCommand(new Config($output), $index);
37 37
         if ($command) {
38 38
             $output->writeln('<info>Getting index mode</info>');
39
-            $passedCommand = "vagrant ssh -c '". $command ."'";
39
+            $passedCommand = "vagrant ssh -c '".$command."'";
40 40
             return new ProcessCommand($passedCommand, $this->_projectPath, $output);
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/Magestead/Command/Index/InfoCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $output->writeln('<info>Getting index information</info>');
33 33
 
34 34
         $command = $this->getCommand(new Config($output));
35
-        $passedCommand = "vagrant ssh -c '". $command ."'";
35
+        $passedCommand = "vagrant ssh -c '".$command."'";
36 36
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
37 37
     }
38 38
 
Please login to merge, or discard this patch.
src/Magestead/Command/Index/ReindexCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $index = $input->getArgument('index');
36 36
 
37 37
         $command = $this->getCommand(new Config($output), $index);
38
-        $passedCommand = "vagrant ssh -c '". $command ."'";
38
+        $passedCommand = "vagrant ssh -c '".$command."'";
39 39
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
40 40
     }
41 41
 
Please login to merge, or discard this patch.
src/Magestead/Command/Cache/StatusCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $output->writeln('<info>Checking cache status</info>');
33 33
 
34 34
         $command = $this->getCommand(new Config($output));
35
-        $passedCommand = "vagrant ssh -c '". $command ."'";
35
+        $passedCommand = "vagrant ssh -c '".$command."'";
36 36
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
37 37
     }
38 38
 
Please login to merge, or discard this patch.
src/Magestead/Command/Cache/EnableCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $output->writeln('<info>Enabling all cache types</info>');
33 33
 
34 34
         $command = $this->getCommand(new Config($output));
35
-        $passedCommand = "vagrant ssh -c '". $command ."'";
35
+        $passedCommand = "vagrant ssh -c '".$command."'";
36 36
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
37 37
     }
38 38
 
Please login to merge, or discard this patch.
src/Magestead/Command/Cache/FlushCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $output->writeln('<info>Flushing cache storage</info>');
33 33
 
34 34
         $command = $this->getCommand(new Config($output));
35
-        $passedCommand = "vagrant ssh -c '". $command ."'";
35
+        $passedCommand = "vagrant ssh -c '".$command."'";
36 36
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
37 37
     }
38 38
 
Please login to merge, or discard this patch.
src/Magestead/Command/Cache/CleanCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $output->writeln('<info>Cleaning all cache types</info>');
33 33
 
34 34
         $command = $this->getCommand(new Config($output));
35
-        $passedCommand = "vagrant ssh -c '". $command ."'";
35
+        $passedCommand = "vagrant ssh -c '".$command."'";
36 36
         return new ProcessCommand($passedCommand, $this->_projectPath, $output);
37 37
     }
38 38
 
Please login to merge, or discard this patch.