]> granicus.if.org Git - php/commitdiff
...
authorkrakjoe <joe.watkins@live.co.uk>
Fri, 15 Nov 2013 16:09:40 +0000 (16:09 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Fri, 15 Nov 2013 16:09:40 +0000 (16:09 +0000)
tutorials/intro.md

index fcc350164625171b1ac06dead6d3d4763c53653f..473f3d6bdd9979f425fea16e04e5c2a72302b6c2 100644 (file)
@@ -26,10 +26,12 @@ phpdbg also includes a userland API to enable working with breakpoints from with
 
 ```php
 /**
-* Sets a breakpoint at the next opcode address
+* If no parameters are recieved sets a breakpoint at the next opcode address
+* @param type           a constant PHPDBG_ type
+* @param expression     the expression for the break command
 * @return void
 */
-proto void phpdbg_break(void);
+proto void phpdbg_break([integer type, string expression]);
 ```