web\AssetManager $bundles

$bundles public property List of asset bundle configurations. This property is provided to customize asset bundles. When a bundle is being loaded by getBundle(), if it has a corresponding configuration specified here, the configuration will be applied to the bundle. The array keys are the asset bundle names, which typically are asset bundle class names without leading backslash. The array values are the corresponding configurations. If a value is false, it means the corresponding asset bund

authclient\BaseClient setId()

setId() public method public void setId ( $id )$id string Service id.

web\Request getServerName()

getServerName() public method Returns the server name. public string getServerName ( )return string Server name, null if not available

db\Migration createIndex()

createIndex() public method Builds and executes a SQL statement for creating a new index. public void createIndex ( $name, $table, $columns, $unique = false )$name string The name of the index. The name will be properly quoted by the method. $table string The table that the new index will be created for. The table name will be properly quoted by the method. $columns string|array The column(s) that should be included in the index. If there are multiple columns, please separate them

web\Session offsetUnset()

offsetUnset() public method This method is required by the interface ArrayAccess. public void offsetUnset ( $offset )$offset mixed The offset to unset element

web\UrlRuleInterface parseRequest()

parseRequest() public abstract method Parses the given request and returns the corresponding route and parameters. public abstract 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.

web\Session getCookieParams()

getCookieParams() public method See also http://php.net/manual/en/function.session-get-cookie-params.php. public array getCookieParams ( )return array The session cookie parameters.

console\controllers\AssetController $cssCompressor

$cssCompressor public property CSS file compressor. If a string, it is treated as shell command template, which should contain placeholders {from} - source file name - and {to} - output file name. Otherwise, it is treated as PHP callback, which should perform the compression. Default value relies on usage of "YUI Compressor" See also https://github.com/yui/yuicompressor/. public string|callable $cssCompressor = 'java -jar yuicompressor.jar --type css {from} -o {to}'

grid\GridViewAsset $depends

$depends public property public $depends = ['yii\web\YiiAsset']

web\HeaderCollection $iterator

$iterator public read-only property An iterator for traversing the headers in the collection. public ArrayIterator getIterator ( )