test\ArrayFixture unload()

unload() public method Unloads the fixture. This method is called after every test method finishes. You may override this method to perform necessary cleanup work for the fixture. public void unload ( )

mongodb\file\StreamWrapper stream_write()

stream_write() public method Writes to stream. This method is called in response to fwrite(). See also \yii\mongodb\file\fwrite(). public integer stream_write ( $data )$data string String to be stored into the underlying stream. return integer The number of bytes that were successfully stored.

web\CookieCollection count()

count() public method Returns the number of cookies in the collection. This method is required by the SPL Countable interface. It will be implicitly called when you use count($collection). public integer count ( )return integer The number of cookies in the collection.

rest\UrlRule createUrl()

createUrl() public method Creates a URL according to the given route and parameters. public string|boolean createUrl ( $manager, $route, $params )$manager yii\web\UrlManager The URL manager $route string The route. It should not have slashes at the beginning or the end. $params array The parameters return string|boolean The created URL, or false if this rule cannot be used for creating this URL.

test\ActiveFixture getData()

getData() protected method Returns the fixture data. The default implementation will try to return the fixture data by including the external file specified by $dataFile. The file should return an array of data rows (column name => column value), each corresponding to a row in the table. If the data file does not exist, an empty array will be returned. protected array getData ( )return array The data rows to be inserted into the database table.

web\Cookie $name

$name public property Name of the cookie public string $name = null

helpers\BaseHtml label()

label() public static method Generates a label tag. public static string label ( $content, $for = null, $options = [] )$content string Label text. It will NOT be HTML-encoded. Therefore you can pass in HTML code such as an image tag. If this is is coming from end users, you should encode() it to prevent XSS attacks. $for string The ID of the HTML element that this label is associated with. If this is null, the "for" attribute will not be generated. $options array The tag options in t

gii\generators\controller\Generator $description

$description public read-only property The detailed description of the generator. public string getDescription ( )

helpers\BaseHtml hiddenInput()

hiddenInput() public static method Generates a hidden input field. public static string hiddenInput ( $name, $value = null, $options = [] )$name string The name attribute. $value string The value attribute. If it is null, the value attribute will not be generated. $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using encode(). If a value is null, the corresponding attribute wil

rest\UrlRule parseRequest()

parseRequest() public method Parses the given request and returns the corresponding route and parameters. public array|boolean parseRequest ( $manager, $request )$manager yii\web\UrlManager The URL manager $request yii\web\Request The request component return array|boolean The parsing result. The route and the parameters are returned as an array. If false, it means this rule cannot be used to parse this path info.