This commit is contained in:
krakjoe 2013-11-10 11:35:59 +00:00
parent 6df19b3aa2
commit b978c20f63
5 changed files with 92 additions and 18 deletions

View file

@ -32,6 +32,7 @@
* Helper Forward Declarations
*/
PHPDBG_HELP(exec);
PHPDBG_HELP(compile);
PHPDBG_HELP(print);
PHPDBG_HELP(brake);
@ -39,9 +40,10 @@ PHPDBG_HELP(brake);
* Commands
*/
static const phpdbg_command_t phpdbg_help_commands[] = {
PHPDBG_HELP_D(exec, "the execution context should be a valid phpdbg path"),
PHPDBG_HELP_D(print, "printing allows inspection of the execution environment"),
PHPDBG_HELP_D(brake, "brake points allow execution interruption"),
PHPDBG_HELP_D(exec, "the execution context should be a valid phpdbg path"),
PHPDBG_HELP_D(compile, "pre-compilation allows inspection of code before execution"),
PHPDBG_HELP_D(print, "printing allows inspection of the execution environment"),
PHPDBG_HELP_D(brake, "brake points allow execution interruption"),
{NULL, 0, 0}
};