Make CommandPipeline::recordCommand() overridable by subclasses.

This commit is contained in:
Daniele Alessandri
2011-03-06 10:05:46 +01:00
parent 7bef3abf91
commit b03e6c4f02
+1 -1
View File
@@ -21,7 +21,7 @@ class CommandPipeline {
return $this;
}
private function recordCommand(ICommand $command) {
protected function recordCommand(ICommand $command) {
$this->_pipelineBuffer[] = $command;
}