swiftmailer\Message getTo()

getTo() public method Returns the message recipient(s). public array getTo ( )return array The message recipients

web\Session setName()

setName() public method Sets the name for the current session. This is a wrapper for PHP session_name(). public void setName ( $value )$value string The session name for the current session, must be an alphanumeric string. It defaults to "PHPSESSID".

authclient\signature\RsaSha1 getName()

getName() public method Return the canonical name of the Signature Method. public string getName ( )return string Method name.

sphinx\Command dropPrimaryKey()

dropPrimaryKey() public method Creates a SQL command for removing a primary key constraint to an existing table. public $this dropPrimaryKey ( $name, $table )$name string The name of the primary key constraint to be removed. $table string The table that the primary key constraint will be removed from. return $this The command object itself

web\AssetManager getAssetUrl()

getAssetUrl() public method Returns the actual URL for the specified asset. The actual URL is obtained by prepending either $baseUrl or yii\web\AssetManager::$baseUrl to the given asset path. public string getAssetUrl ( $bundle, $asset )$bundle yii\web\AssetBundle The asset bundle which the asset file belongs to $asset string The asset path. This should be one of the assets listed in \yii\web\js or \yii\web\css. return string The actual URL for the specified asset.

web\Session getGCProbability()

getGCProbability() public method public float getGCProbability ( )return float The probability (percentage) that the GC (garbage collection) process is started on every session initialization, defaults to 1 meaning 1% chance.

mongodb\Query populate()

populate() public method Converts the raw query results into the format as specified by this query. This method is internally used to convert the data fetched from database into the format as required by this query. public array populate ( $rows )$rows array The raw query result from database return array The converted query result

db\BaseActiveRecord beforeSave()

beforeSave() public method This method is called at the beginning of inserting or updating a record. The default implementation will trigger an EVENT_BEFORE_INSERT event when $insert is true, or an EVENT_BEFORE_UPDATE event if $insert is false. When overriding this method, make sure you call the parent implementation like the following: public function beforeSave($insert) { if (parent::beforeSave($insert)) { // ...custom code here... return true; } else { ret

db\oci\Schema createColumnSchemaBuilder()

createColumnSchemaBuilder() public method Create a column schema builder instance giving the type and value precision. This method may be overridden by child classes to create a DBMS-specific column schema builder. public yii\db\ColumnSchemaBuilder createColumnSchemaBuilder ( $type, $length = null )$type string Type of the column. See yii\db\oci\ColumnSchemaBuilder::$type. $length integer|string|array Length or precision of the column. See yii\db\oci\ColumnSchemaBuilder::$length. re

grid\GridView $formatter

$formatter public property The formatter used to format model attribute values into displayable texts. This can be either an instance of yii\i18n\Formatter or an configuration array for creating the yii\i18n\Formatter instance. If this property is not set, the "formatter" application component will be used. public array|yii\i18n\Formatter $formatter = null