Slight micro-optimization.

This commit is contained in:
Daniele Alessandri
2010-09-21 15:55:02 +02:00
parent 4a6bab995e
commit 8f601b8420
+2 -2
View File
@@ -468,12 +468,12 @@ abstract class Command implements ICommand {
public function setArguments(/* arguments */) {
$this->_arguments = $this->filterArguments(func_get_args());
$this->_hash = null;
unset($this->_hash);
}
public function setArgumentsArray(Array $arguments) {
$this->_arguments = $this->filterArguments($arguments);
$this->_hash = null;
unset($this->_hash);
}
public function getArguments() {