elasticsearch\Command $type

$type public property The types to execute the query on. Defaults to null meaning all types public string|array $type = null

elasticsearch\Query $fields

$fields public property The fields being retrieved from the documents. For example, ['id', 'name']. If not set, this option will not be applied to the query and no fields will be returned. In this case the _source field will be returned by default which can be configured using source(). Setting this to an empty array will result in no fields being retrieved, which means that only the primaryKey of a record will be available in the result. For each field you may also add an array representin

filters\AccessControl $user

$user public property The user object representing the authentication status or the ID of the user application component. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\web\User|array|string $user = 'user'

filters\AccessRule $actions

$actions public property List of action IDs that this rule applies to. The comparison is case-sensitive. If not set or empty, it means this rule applies to all actions. public array $actions = null

web\Application setHomeUrl()

setHomeUrl() public method public void setHomeUrl ( $value )$value string The homepage URL

swiftmailer\Message addSignature()

addSignature() public method (available since version 2.0.6) Adds message signature. public $this addSignature ( $signature )$signature array|callable|\Swift_Signer Signature specification, this can be: \Swift_Signer instance callable, which returns \Swift_Signer instance configuration array for the signer creation return $this Self reference throws yii\base\InvalidConfigException on invalid signature configuration

faker\FixtureController generateFixtureFile()

generateFixtureFile() public method Generates fixture file by the given fixture template file. public void generateFixtureFile ( $templateName, $templatePath, $fixtureDataPath )$templateName string Template file name $templatePath string Path where templates are stored $fixtureDataPath string Fixture data path where generated file should be written

validators\FileValidator validateExtension()

validateExtension() protected method Checks if given uploaded file have correct type (extension) according current validator settings. protected boolean validateExtension ( $file )$file yii\web\UploadedFile

grid\Column getHeaderCellLabel()

getHeaderCellLabel() protected method (available since version 2.0.8) Returns header cell label. This method may be overridden to customize the label of the header cell. protected string getHeaderCellLabel ( )return string Label

base\Component on()

on() public method Attaches an event handler to an event. The event handler must be a valid PHP callback. The following are some examples: function ($event) { ... } // anonymous function [$object, 'handleClick'] // $object->handleClick() ['Page', 'handleClick'] // Page::handleClick() 'handleClick' // global function handleClick() The event handler must be defined with the following signature, function ($event) where $event is an yii\base\E