authclient\BaseClient $name

$name public property Service name. public string getName ( )public void setName ( $name )

sphinx\ColumnSchema $dbType

$dbType public property The DB type of this column. Possible DB types vary according to the type of DBMS. public string $dbType = null

sphinx\ActiveRecord isTransactional()

isTransactional() public method Returns a value indicating whether the specified operation is transactional in the current $scenario. public boolean isTransactional ( $operation )$operation integer The operation to check. Possible values are OP_INSERT, OP_UPDATE and OP_DELETE. return boolean Whether the specified operation is transactional in the current $scenario.

web\Request get()

get() public method Returns GET parameter with a given name. If name isn't specified, returns an array of all GET parameters. public array|mixed get ( $name = null, $defaultValue = null )$name string The parameter name $defaultValue mixed The default parameter value if the parameter does not exist.

caching\MemCache addServers()

addServers() protected method Add servers to the server pool of the cache specified protected void addServers ( $cache, $servers )$cache \Memcache|\Memcached $servers yii\caching\MemCacheServer[] throws yii\base\InvalidConfigException

authclient\AuthAction $successUrl

$successUrl public property Successful URL. public string getSuccessUrl ( )public void setSuccessUrl ( $url )

db\Command cancel()

cancel() public method Cancels the execution of the SQL statement. This method mainly sets $pdoStatement to be null. public void cancel ( )

twig\ViewRenderer $filters

$filters public property Custom filters. Keys of the array are names to call in template, values are names of functions or static methods of some class. Example: ['rot13' => 'str_rot13', 'jsonEncode' => '\yii\helpers\Json::encode']. In the template you can use it like this: {{ 'test'|rot13 }} or {{ model|jsonEncode }}. public array $filters = []

mongodb\ActiveFixture getCollectionName()

getCollectionName() protected method Returns collection name used by this fixture. protected array|string getCollectionName ( )return array|string Related collection name

gii\generators\module\Generator validateModuleClass()

validateModuleClass() public method Validates $moduleClass to make sure it is a fully qualified class name. public void validateModuleClass ( )