authclient\OAuth1 fetchAccessToken()

fetchAccessToken() public method Fetches OAuth access token. public yii\authclient\OAuthToken fetchAccessToken ( yii\authclient\OAuthToken $requestToken = null, $oauthVerifier = null, array $params = [] )$requestToken yii\authclient\OAuthToken OAuth request token. $oauthVerifier string OAuth verifier. $params array Additional request params. return yii\authclient\OAuthToken OAuth access token. throws yii\base\Exception on failure.

rbac\ManagerInterface removeAll()

removeAll() public abstract method Removes all authorization data, including roles, permissions, rules, and assignments. public abstract void removeAll ( )

db\Command bindValue()

bindValue() public method Binds a value to a parameter. See also http://www.php.net/manual/en/function.PDOStatement-bindValue.php. public $this bindValue ( $name, $value, $dataType = null )$name string|integer Parameter identifier. For a prepared statement using named placeholders, this will be a parameter name of the form :name. For a prepared statement using question mark placeholders, this will be the 1-indexed position of the parameter. $value mixed The value to bind to the param

validators\CompareValidator compareValues()

compareValues() protected method Compares two values with the specified operator. protected boolean compareValues ( $operator, $type, $value, $compareValue )$operator string The comparison operator $type string The type of the values being compared $value mixed The value being compared $compareValue mixed Another value being compared return boolean Whether the comparison using the specified operator is true.

authclient\clients\YandexOAuth $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://login.yandex.ru'

web\Cookie __toString()

__toString() public method Magic method to turn a cookie object into a string without having to explicitly access $value. if (isset($request->cookies['name'])) { $value = (string) $request->cookies['name']; } public string __toString ( )return string The value of the cookie. If the value property is null, an empty string will be returned.

db\IntegrityException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

db\ActiveRelationTrait populateRelation()

populateRelation() public method Finds the related records and populates them into the primary models. public array populateRelation ( $name, &$primaryModels )$name string The relation name $primaryModels array Primary models return array The related models throws yii\base\InvalidConfigException if $link is invalid

web\UploadedFile getHasError()

getHasError() public method public boolean getHasError ( )return boolean Whether there is an error with the uploaded file. Check $error for detailed error code information.

db\Query exists()

exists() public method Returns a value indicating whether the query result contains any row of data. public boolean exists ( $db = null )$db yii\db\Connection The database connection used to generate the SQL statement. If this parameter is not given, the db application component will be used. return boolean Whether the query result contains any row of data.