Function FirePHP->assertionHandler
Definitions
sources/firephp.php
- FirePHP's assertion handlerLogs all assertions to your firebug console and then stops the script.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$file | string | No | No | required parameter | N/A | N/A | File source of assertion |
$line | integer | No | No | required parameter | N/A | N/A | Line source of assertion |
$code | mixed | No | No | required parameter | N/A | N/A | Assertion code |
Preview
Code (PHP)
/**
* FirePHP's assertion handlerLogs all assertions to your firebug console and then stops the script.
*
* @param string $file File source of assertion
* @param integer $line Line source of assertion
* @param mixed $code Assertion code
*/
public function assertionHandler($file, $line, $code)
* FirePHP's assertion handlerLogs all assertions to your firebug console and then stops the script.
*
* @param string $file File source of assertion
* @param integer $line Line source of assertion
* @param mixed $code Assertion code
*/
public function assertionHandler($file, $line, $code)