authclient\OAuth1 $consumerSecret

$consumerSecret public property OAuth consumer secret. public string $consumerSecret = null

sphinx\Command createTable()

createTable() public method Creates a SQL command for creating a new DB table. The columns in the new table should be specified as name-definition pairs (e.g. 'name' => 'string'), where name stands for a column name which will be properly quoted by the method, and definition stands for the column type which can contain an abstract DB type. The method yii\sphinx\QueryBuilder::getColumnType() will be called to convert the abstract column types to physical ones. For example, string will be

mongodb\ActiveRecord delete()

delete() public method Deletes the document corresponding to this active record from the collection. This method performs the following steps in order: call beforeDelete(). If the method returns false, it will skip the rest of the steps; delete the document from the collection; call afterDelete(). In the above step 1 and 3, events named EVENT_BEFORE_DELETE and EVENT_AFTER_DELETE will be raised by the corresponding methods. public integer|boolean delete ( )return integer|boolean The num

authclient\BaseOAuth setCurlOptions()

setCurlOptions() public method public void setCurlOptions ( array $curlOptions )$curlOptions array CURL options.

grid\Column renderFilterCellContent()

renderFilterCellContent() protected method Renders the filter cell content. The default implementation simply renders a space. This method may be overridden to customize the rendering of the filter cell (if any). protected string renderFilterCellContent ( )return string The rendering result

rbac\PhpManager removeAllItems()

removeAllItems() protected method Removes all auth items of the specified type. protected void removeAllItems ( $type )$type integer The auth item type (either Item::TYPE_PERMISSION or Item::TYPE_ROLE)

web\Linkable getLinks()

getLinks() public abstract method Returns a list of links. Each link is either a URI or a yii\web\Link object. The return value of this method should be an array whose keys are the relation names and values the corresponding links. If a relation name corresponds to multiple links, use an array to represent them. For example, [ 'self' => 'http://example.com/users/1', 'friends' => [ 'http://example.com/users/2', 'http://example.com/users/3', ], 'manager'

authclient\BaseOAuth composeUrl()

composeUrl() protected method Composes URL from base URL and GET params. protected string composeUrl ( $url, array $params = [] )$url string Base URL. $params array GET params. return string Composed URL.

web\Request getIsHead()

getIsHead() public method Returns whether this is a HEAD request. public boolean getIsHead ( )return boolean Whether this is a HEAD request.

helpers\BaseInflector singularize()

singularize() public static method Returns the singular of the $word public static string singularize ( $word )$word string The english word to singularize return string Singular noun.