base\Model clearErrors()

clearErrors() public method Removes errors for all attributes or a single attribute. public void clearErrors ( $attribute = null )$attribute string Attribute name. Use null to remove errors for all attributes.

web\Response EVENT_AFTER_SEND

EVENT_AFTER_SEND event of type \yii\web\ResponseEvent An event that is triggered at the end of send().

swiftmailer\Message embedContent()

embedContent() public method Attach a content as file and return it's CID source. This method should be used when embedding images or other data in a message. public string embedContent ( $content, array $options = [] )$content string Attachment file content. $options array Options for embed file. Valid options are: fileName: name, which should be used to attach file. contentType: attached file MIME type. return string Attachment CID.

sphinx\MatchBuilder buildAndMatch()

buildAndMatch() public method Connects two or more MATCH expressions with the AND or OR operator public string buildAndMatch ( $operator, $operands, &$params )$operator string The operator which is used for connecting the given operands $operands array The Match expressions to connect $params array The expression parameters to be populated return string The MATCH expression

elasticsearch\Command clearIndexCache()

clearIndexCache() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-clearcache.html. public mixed clearIndexCache ( $index )$index

db\ColumnSchemaBuilder $default

$default protected property Default value of the column. protected mixed $default = null

db\Connection $masterConfig

$masterConfig public property The configuration that should be merged with every master configuration listed in $masters. For example, [ 'username' => 'master', 'password' => 'master', 'attributes' => [ // use a smaller connection timeout PDO::ATTR_TIMEOUT => 10, ], ] public array $masterConfig = []

test\Fixture load()

load() public method Loads the fixture. This method is called before performing every test method. You should override this method with concrete implementation about how to set up the fixture. public void load ( )

elasticsearch\ActiveRecord delete()

delete() public method Deletes the table row corresponding to this active record. This method performs the following steps in order: call beforeDelete(). If the method returns false, it will skip the rest of the steps; delete the record from the database; call afterDelete(). In the above step 1 and 3, events named EVENT_BEFORE_DELETE and EVENT_AFTER_DELETE will be raised by the corresponding methods. public integer|boolean delete ( $options = [] )$options array Options given in this para

gii\CodeFile $operation

$operation public property The operation to be performed. This can be OP_CREATE, OP_OVERWRITE or OP_SKIP. public string $operation = null