test\ActiveFixture getTableSchema()

getTableSchema() public method public yii\db\TableSchema getTableSchema ( )return yii\db\TableSchema The schema information of the database table associated with this fixture. throws yii\base\InvalidConfigException if the table does not exist

authclient\clients\VKontakte $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://api.vk.com/method'

db\oci\ColumnSchemaBuilder __toString()

__toString() public method Builds the full string for the column's schema public string __toString ( )

jui\SliderInput $clientEventMap

$clientEventMap protected property Event names mapped to what should be specified in .on(). If empty, it is assumed that event passed to clientEvents is prefixed with widget name. Event names mapped to what should be specified in .on(). If empty, it is assumed that event passed to clientEvents is prefixed with widget name. protected array $clientEventMap = ['change' => 'slidechange', 'create' => 'slidecreate', 'slide' => 'slide', 'start' => 'slidestart', 'stop' => 'slidestop

debug\models\search\Profile $info

$info public property Info attribute input search value public integer $info = null

mongodb\ActiveRecord deleteAll()

deleteAll() public static method Deletes documents in the collection using the provided conditions. WARNING: If you do not specify any condition, this method will delete documents rows in the collection. For example, to delete all customers whose status is 3: Customer::deleteAll(['status' => 3]); public static integer deleteAll ( $condition = [], $options = [] )$condition array Description of the objects to delete. Please refer to yii\mongodb\Query::where() on how to specify this par

web\Session getHasSessionId()

getHasSessionId() public method Returns a value indicating whether the current request has sent the session ID. The default implementation will check cookie and $_GET using the session name. If you send session ID via other ways, you may need to override this method or call setHasSessionId() to explicitly set whether the session ID is sent. public boolean getHasSessionId ( )return boolean Whether the current request has sent the session ID.

db\Query innerJoin()

innerJoin() public method Appends an INNER JOIN part to the query. public $this innerJoin ( $table, $on = '', $params = [] )$table string|array The table to be joined. Use a string to represent the name of the table to be joined. The table name can contain a schema prefix (e.g. 'public.user') and/or table alias (e.g. 'user u'). The method will automatically quote the table name unless it contains some parenthesis (which means the table is given as a sub-query or DB expression). Use an

base\Event $sender

$sender public property The sender of this event. If not set, this property will be set as the object whose trigger() method is called. This property may also be a null when this event is a class-level event which is triggered in a static context. public object $sender = null

web\HeaderCollection setDefault()

setDefault() public method Sets a new header only if it does not exist yet. If there is already a header with the same name, the new one will be ignored. public $this setDefault ( $name, $value )$name string The name of the header $value string The value of the header return $this The collection object itself