db\mssql\Schema releaseSavepoint()

releaseSavepoint() public method Releases an existing savepoint. public void releaseSavepoint ( $name )$name string The savepoint name

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".

console\controllers\AssetController buildTarget()

buildTarget() protected method Builds output asset bundle. protected void buildTarget ( $target, $type, $bundles )$target yii\web\AssetBundle Output asset bundle $type string Either 'js' or 'css'. $bundles yii\web\AssetBundle[] Source asset bundles. throws yii\console\Exception on failure.

mongodb\file\Cursor __call()

__call() public method PHP magic method, which is invoked on attempt of invocation not existing method. It redirects method call to inner iterator. public mixed __call ( $name, $arguments )$name string Method name. $arguments array Method arguments return mixed Method result.

captcha\CaptchaAction init()

init() public method Initializes the action. public void init ( )throws yii\base\InvalidConfigException if the font file does not exist.

jui\SliderInput run()

run() public method Executes the widget. public void run ( )

base\ErrorException __construct()

__construct() public method Constructs the exception. public void __construct ( $message = '', $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, Exception $previous = null )$message [optional] $code [optional] $severity [optional] $filename [optional] $lineno [optional] $previous [optional]

db\Connection noCache()

noCache() public method Disables query cache temporarily. Queries performed within the callable will not use query cache at all. For example, $db->cache(function (Connection $db) { // ... queries that use query cache ... return $db->noCache(function (Connection $db) { // this query will not use query cache return $db->createCommand('SELECT * FROM customer WHERE id=1')->queryOne(); }); }); See also: $enableQueryCache $queryCache cache() public mix

db\cubrid\Schema $transactionIsolationLevel

$transactionIsolationLevel public write-only property The transaction isolation level to use for this transaction. This can be one of yii\db\Transaction::READ_UNCOMMITTED, yii\db\Transaction::READ_COMMITTED, yii\db\Transaction::REPEATABLE_READ and yii\db\Transaction::SERIALIZABLE but also a string containing DBMS specific syntax to be used after SET TRANSACTION ISOLATION LEVEL. public void setTransactionIsolationLevel ( $level )