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\OAuth1 apiInternal()

apiInternal() protected method Performs request to the OAuth API. protected array apiInternal ( $accessToken, $url, $method, array $params, array $headers )$accessToken yii\authclient\OAuthToken Actual access token. $url string Absolute API URL. $method string Request method. $params array Request parameters. $headers array Additional request headers. return array API response. throws yii\base\Exception on failure.

data\BaseDataProvider getCount()

getCount() public method Returns the number of data models in the current page. public integer getCount ( )return integer The number of data models in the current page.

db\ActiveQuery onCondition()

onCondition() public method Sets the ON condition for a relational query. The condition will be used in the ON part when yii\db\ActiveQuery::joinWith() is called. Otherwise, the condition will be used in the WHERE part of a query. Use this method to specify additional conditions when declaring a relation in the yii\db\ActiveRecord class: public function getActiveUsers() { return $this->hasMany(User::className(), ['id' => 'user_id']) ->onCondition(['active' =>

sphinx\ActiveRecord indexName()

indexName() public static method Declares the name of the Sphinx index associated with this AR class. By default this method returns the class name as the index name by calling yii\helpers\Inflector::camel2id(). For example, 'Article' becomes 'article', and 'StockItem' becomes 'stock_item'. You may override this method if the index is not named after this convention. public static string indexName ( )return string The index name

elasticsearch\Command openIndex()

openIndex() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-open-close.html. public mixed openIndex ( $index )$index

db\ActiveRecord primaryKey()

primaryKey() public static method Returns the primary key name(s) for this AR class. The default implementation will return the primary key(s) as declared in the DB table that is associated with this AR class. If the DB table does not declare any primary key, you should override this method to return the attributes that you want to use as primary keys for this AR class. Note that an array should be returned even for a table with single primary key. public static string[] primaryKey ( )ret

elasticsearch\Query $highlight

$highlight public property The highlight part of this search query. This is an array that allows to highlight search results on one or more fields. See also http://www.elastic.co/guide/en/elasticsearch/reference/1.x/search-request-highlighting.html. public array $highlight = null

authclient\WeChat defaultName()

defaultName() protected method Generates service name. protected string defaultName ( )return string Service name.

db\DataReader readColumn()

readColumn() public method Returns a single column from the next row of a result set. public mixed readColumn ( $columnIndex )$columnIndex integer Zero-based column index return mixed The column of the current row, false if no more rows available