authclient\OpenId buildAxParams()

buildAxParams() protected method Composes AX request parameters. protected array buildAxParams ( )return array AX parameters.

sphinx\QueryBuilder insert()

insert() public method Creates an INSERT SQL statement. For example, $sql = $queryBuilder->insert('idx_user', [ 'name' => 'Sam', 'age' => 30, 'id' => 10, ], $params); The method will properly escape the index and column names. public string insert ( $index, $columns, &$params )$index string The index that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the index. $params array The binding parameters th

web\Session offsetSet()

offsetSet() public method This method is required by the interface ArrayAccess. public void offsetSet ( $offset, $item )$offset integer The offset to set element $item mixed The element value

db\BatchQueryResult fetchData()

fetchData() protected method Fetches the next batch of data. protected array fetchData ( )return array The data fetched

authclient\BaseOAuth createSignatureMethod()

createSignatureMethod() protected method Creates signature method instance from its configuration. protected yii\authclient\signature\BaseMethod createSignatureMethod ( array $signatureMethodConfig )$signatureMethodConfig array Signature method configuration. return yii\authclient\signature\BaseMethod Signature method instance.

rest\Serializer $totalCountHeader

$totalCountHeader public property The name of the HTTP header containing the information about total number of data items. This is used when serving a resource collection with pagination. public string $totalCountHeader = 'X-Pagination-Total-Count'

gii\generators\extension\Generator attributeLabels()

attributeLabels() public method Returns the attribute labels. Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users. By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels. Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent

redis\ActiveRecord updateAllCounters()

updateAllCounters() public static method Updates the whole table using the provided counter changes and conditions. For example, to increment all customers' age by 1, Customer::updateAllCounters(['age' => 1]); public static integer updateAllCounters ( $counters, $condition = null )$counters array The counters to be updated (attribute name => increment value). Use negative values if you want to decrement the counters. $condition array The conditions that will be put in the WHERE

mongodb\QueryBuilder createCollection()

createCollection() public method Generates 'create collection' command. https://docs.mongodb.com/manual/reference/method/db.createCollection/ public array createCollection ( $collectionName, array $options = [] )$collectionName string Collection name. $options array Collection options in format: "name" => "value" return array Command document.

data\ArrayDataProvider prepareTotalCount()

prepareTotalCount() protected method Returns a value indicating the total number of data models in this data provider. protected integer prepareTotalCount ( )return integer Total number of data models in this data provider.