Skip to content

Commit 718d187

Browse files
authored
Remove _execCommand property
1 parent 16aaeae commit 718d187

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/Command.php

+1-8
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ class Command
9797
*/
9898
protected $_args = array();
9999

100-
/**
101-
* @var string the full command string to execute
102-
*/
103-
protected $_execCommand;
104-
105100
/**
106101
* @var string the stdout output
107102
*/
@@ -239,9 +234,7 @@ public function getExecCommand()
239234
}
240235

241236
$args = $this->getArgs();
242-
$this->_execCommand = $args ? $command.' '.$args : $command;
243-
244-
return $this->_execCommand;
237+
return $args ? $command.' '.$args : $command;
245238
}
246239

247240
/**

0 commit comments

Comments
 (0)