We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_execCommand
1 parent 16aaeae commit 718d187Copy full SHA for 718d187
src/Command.php
@@ -97,11 +97,6 @@ class Command
97
*/
98
protected $_args = array();
99
100
- /**
101
- * @var string the full command string to execute
102
- */
103
- protected $_execCommand;
104
-
105
/**
106
* @var string the stdout output
107
@@ -239,9 +234,7 @@ public function getExecCommand()
239
234
}
240
235
241
236
$args = $this->getArgs();
242
- $this->_execCommand = $args ? $command.' '.$args : $command;
243
244
- return $this->_execCommand;
237
+ return $args ? $command.' '.$args : $command;
245
238
246
247
0 commit comments