db\Command renameColumn()

renameColumn() public method Creates a SQL command for renaming a column. public $this renameColumn ( $table, $oldName, $newName )$table string The table whose column is to be renamed. The name will be properly quoted by the method. $oldName string The old name of the column. The name will be properly quoted by the method. $newName string The new name of the column. The name will be properly quoted by the method. return $this The command object itself

mail\BaseMailer EVENT_AFTER_SEND

EVENT_AFTER_SEND event of type yii\mail\MailEvent An event raised right after send.

db\Query orHaving()

orHaving() public method Adds an additional HAVING condition to the existing one. The new condition and the existing one will be joined using the 'OR' operator. See also: having() andHaving() public $this orHaving ( $condition, $params = [] )$condition string|array|yii\db\Expression The new HAVING condition. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

captcha\CaptchaAsset $sourcePath

$sourcePath public property public $sourcePath = '@yii/assets'

rest\UrlRule $only

$only public property List of acceptable actions. If not empty, only the actions within this array will have the corresponding URL rules created. See also $patterns. public array $only = []

test\Fixture beforeUnload()

beforeUnload() public method This method is called BEFORE any fixture data is unloaded for the current test. public void beforeUnload ( )

db\mysql\Schema quoteSimpleColumnName()

quoteSimpleColumnName() public method Quotes a column name for use in a query. A simple column name has no prefix. public string quoteSimpleColumnName ( $name )$name string Column name return string The properly quoted column name

data\ActiveDataProvider prepareModels()

prepareModels() protected method Prepares the data models that will be made available in the current page. protected array prepareModels ( )return array The available data models

web\AssetManager $appendTimestamp

$appendTimestamp public property (available since version 2.0.3) Whether to append a timestamp to the URL of every published asset. When this is true, the URL of a published asset may look like /path/to/asset?v=timestamp, where timestamp is the last modification time of the published asset file. You normally would want to set this property to true when you have enabled HTTP caching for assets, because it allows you to bust caching when the assets are updated. public boolean $appendTimestam

authclient\BaseOAuth $signatureMethod

$signatureMethod public property Signature method instance or its array configuration. public yii\authclient\signature\BaseMethod getSignatureMethod ( )public void setSignatureMethod ( $signatureMethod )