method addError [line 993]
void addError(
integer
$num, string
$data...)
add a new error to the $errors array
Tags:
todo: CS Cleanup - do I need to add $data to the method signature?
Parameters:
string
$data...
up to 4 string parameters to sprintf() into the error string for error number $num
method addErrorReturn [line 1016]
void addErrorReturn(
integer
$num, string
$data...)
add a new error to the $errors array and returns the error string
Tags:
todo: CS Cleanup - do I need to add $data to the method signature?
Parameters:
string
$data...
up to 4 string parameters to sprintf() into the error string for error number $num
method addWarning [line 970]
void addWarning(
integer
$num, string
$data...)
add a new warning to the $warnings array
Tags:
todo: CS Cleanup - do I need to add $data to the method signature?
Parameters:
string
$data...
up to 4 string parameters to sprintf() into the error string for error number $num
method handleEvent [line 940]
void handleEvent(
integer
$num, mixed
$data)
This function subscribes to two events in the Parser in order to keep track of line number information and file name.
Parameters:
mixed
$data
either a line number if $num is PHPDOCUMENTOR_EVENT_NEWLINENUM or a file name if $num is PHPDOCUMENTOR_EVENT_NEWFILE
method returnErrors [line 1045]
Get sorted array of all non-fatal errors in parsing/conversion
method returnLastError [line 1077]
string returnLastError(
)
Get the error message of the last error
method returnLastWarning [line 1087]
string returnLastWarning(
)
Get the warning message of the last warning
method returnWarnings [line 1034]
Get sorted array of all warnings in parsing/conversion