Rename method ICommand::getCommandId() to ICommand::getId().

This commit is contained in:
Daniele Alessandri
2011-03-04 19:37:10 +01:00
parent 0d5fb3319d
commit 30bc53ee75
124 changed files with 124 additions and 124 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class SimpleDebuggableConnection extends StreamConnection {
private function storeDebug(ICommand $command, $direction) {
$firtsArg = $command->getArgument(0);
$timestamp = round(microtime(true) - $this->_tstart, 4);
$debug = $command->getCommandId();
$debug = $command->getId();
$debug .= isset($firtsArg) ? " $firtsArg " : ' ';
$debug .= "$direction $this";
$debug .= " [{$timestamp}s]";