Fixed bug in addCommands

This commit is contained in:
Chris 2016-11-01 15:28:03 +01:00
parent 612e8d06c0
commit 3cbf504aed
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class Context
$handler = [ $this,$handler ];
}
// Add the command to the command list
$this->addCommand($handler);
$this->addCommand($command, $handler);
}
}