summaryrefslogtreecommitdiff
path: root/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
diff options
context:
space:
mode:
authorwei <>2007-01-17 08:01:40 +0000
committerwei <>2007-01-17 08:01:40 +0000
commit3dc598bc7c2604e24b9e0be1189d9d78b43737ea (patch)
treefa3bc532607b6c70af3737fec80ebfed62debc5a /framework/3rdParty/PhpShell/PHP/Shell/Commands.php
parentd919dfa1674ddd5226834b81728e1772917d6240 (diff)
Add active record generator.
Diffstat (limited to 'framework/3rdParty/PhpShell/PHP/Shell/Commands.php')
-rw-r--r--framework/3rdParty/PhpShell/PHP/Shell/Commands.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/3rdParty/PhpShell/PHP/Shell/Commands.php b/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
index 5a5e7e9b..3d4bf5b2 100644
--- a/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
+++ b/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
@@ -3,14 +3,14 @@
/**
* Commands for the PHP_Shell
*
-* Extensions can register their own commands for the shell like the
+* Extensions can register their own commands for the shell like the
* InlineHelp Extension which provides inline help for all functions
*
-* It uses the pattern '? <string>' to catch the cmdline strings.
+* It uses the pattern '? <string>' to catch the cmdline strings.
*
-* registerCommand() should be called by the extensions in the register()
+* registerCommand() should be called by the extensions in the register()
* method. Its parameters are
-* - the regex which matches the command
+* - the regex which matches the command
* - the object and the method to call if the command is matched
* - the human readable command string and the description for the help
*/
@@ -23,7 +23,7 @@ class PHP_Shell_Commands {
static protected $instance;
/**
- * registered commands
+ * registered commands
*
* array('quit' => ... )
*