web\ErrorHandler getTypeUrl()

getTypeUrl() protected method Returns the informational link URL for a given PHP type/class. See also addTypeLinks(). protected string|null getTypeUrl ( $class, $method )$class string The type or class name. $method string|null The method name. return string|null The informational link URL.

web\ErrorHandler getExceptionName()

getExceptionName() public method Returns human-readable exception name public string getExceptionName ( $exception )$exception Exception return string Human-readable exception name or null if it cannot be determined

web\ErrorHandler createServerInformationLink()

createServerInformationLink() public method Creates string containing HTML link which refers to the home page of determined web-server software and its full name. public string createServerInformationLink ( )return string Server software information hyperlink.

web\ErrorHandler createHttpStatusLink()

createHttpStatusLink() public method Creates HTML containing link to the page with the information on given HTTP status code. public string createHttpStatusLink ( $statusCode, $statusDescription )$statusCode integer To be used to generate information link. $statusDescription string Description to display after the the status code. return string Generated HTML with HTTP status code information.

web\ErrorHandler createFrameworkVersionLink()

createFrameworkVersionLink() public method Creates string containing HTML link which refers to the page with the current version of the framework and version number text. public string createFrameworkVersionLink ( )return string Framework version information hyperlink.

web\ErrorHandler convertExceptionToArray()

convertExceptionToArray() protected method Converts an exception into an array. protected array convertExceptionToArray ( $exception )$exception Exception The exception being converted return array The array representation of the exception.

web\ErrorHandler argumentsToString()

argumentsToString() public method Converts arguments array to its string representation public string argumentsToString ( $args )$args array Arguments array to be converted return string String representation of the arguments array

web\ErrorHandler addTypeLinks()

addTypeLinks() public method Adds informational links to the given PHP type/class. public string addTypeLinks ( $code )$code string Type/class name to be linkified. return string Linkified with HTML type/class name.

web\ErrorHandler $previousExceptionView

$previousExceptionView public property The path of the view file for rendering previous exceptions. public string $previousExceptionView = '@yii/views/errorHandler/previousException.php'

web\ErrorHandler $maxTraceSourceLines

$maxTraceSourceLines public property Maximum number of trace source code lines to be displayed. Defaults to 13. public integer $maxTraceSourceLines = 13