filters\PageCache restoreResponse()

restoreResponse() protected method (available since version 2.0.3) Restores response properties from the given data protected void restoreResponse ( $response, $data )$response yii\web\Response The response to be restored $data array The response property data

base\Application $requestedRoute

$requestedRoute public property The requested route public string $requestedRoute = null

validators\DateValidator $maxString

$maxString public property (available since version 2.0.4) User friendly value of upper limit to display in the error message. If this property is null, the value of $max will be used (before parsing). public string $maxString = null

rbac\DbManager removeChild()

removeChild() public method Removes a child from its parent. Note, the child item is not deleted. Only the parent-child relationship is removed. public boolean removeChild ( $parent, $child )$parent yii\rbac\Item $child yii\rbac\Item return boolean Whether the removal is successful

db\ColumnSchemaBuilder $db

$db public property (available since version 2.0.8) The current database connection. It is used mainly to escape strings safely when building the final column schema string. public yii\db\Connection $db = null

web\Request $contentType

$contentType public read-only property Request content-type. Null is returned if this information is not available. public string getContentType ( )

web\UrlManager $scriptUrl

$scriptUrl public property The entry script URL that is used by createUrl() to prepend to created URLs. public string getScriptUrl ( )public void setScriptUrl ( $value )

db\Connection quoteValue()

quoteValue() public method Quotes a string value for use in a query. Note that if the parameter is not a string, it will be returned without change. See also http://www.php.net/manual/en/function.PDO-quote.php. public string quoteValue ( $value )$value string String to be quoted return string The properly quoted string

web\CookieCollection offsetSet()

offsetSet() public method Adds the cookie to the collection. This method is required by the SPL interface ArrayAccess. It is implicitly called when you use something like $collection[$name] = $cookie;. This is equivalent to add(). public void offsetSet ( $name, $cookie )$name string The cookie name $cookie yii\web\Cookie The cookie to be added

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.