authclient\OpenId hostExists()

hostExists() public method Checks if the server specified in the url exists. public boolean hostExists ( $url )$url string URL to check return boolean True, if the server exists; false otherwise

sphinx\ActiveFixture getData()

getData() protected method Returns the fixture data. The default implementation will try to return the fixture data by including the external file specified by $dataFile. The file should return an array of data rows (column name => column value), each corresponding to a row in the index. If the data file does not exist, an empty array will be returned. protected array getData ( )return array The data rows to be inserted into the index.

gii\Generator $templates

$templates public property A list of available code templates. The array keys are the template names, and the array values are the corresponding template paths or path aliases. public array $templates = []

web\Response $charset

$charset public property The charset of the text response. If not set, it will use the value of yii\web\Application::$charset. public string $charset = null

authclient\OAuth1 buildAuthUrl()

buildAuthUrl() public method Composes user authorization URL. public string buildAuthUrl ( yii\authclient\OAuthToken $requestToken = null, array $params = [] )$requestToken yii\authclient\OAuthToken OAuth request token. $params array Additional request params. return string Authorize URL throws yii\base\Exception on failure.

helpers\BaseInflector $plurals

$plurals public static property The rules for converting a word into its plural form. The keys are the regular expressions and the values are the corresponding replacements. public static array $plurals = ['/([nrlm]ese|deer|fish|sheep|measles|ois|pox|media)$/i' => '\1', '/^(sea[- ]bass)$/i' => '\1', '/(m)ove$/i' => '\1oves', '/(f)oot$/i' => '\1eet', '/(h)uman$/i' => '\1umans', '/(s)tatus$/i' => '\1tatuses', '/(s)taff$/i' => '\1taff', '/(t)ooth$/i' => '\1eeth', '/(qu

db\Command dropCommentFromColumn()

dropCommentFromColumn() public method (available since version 2.0.8) Builds a SQL command for dropping comment from column public $this dropCommentFromColumn ( $table, $column )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $column string The name of the column to be commented. The column name will be properly quoted by the method. return $this The command object itself

authclient\clients\GoogleOAuth defaultTitle()

defaultTitle() protected method Generates service title. protected string defaultTitle ( )return string Service title.

db\Schema convertException()

convertException() public method Converts a DB exception to a more concrete one if possible. public yii\db\Exception convertException ( Exception $e, $rawSql )$e Exception $rawSql string SQL that produced exception

db\Query params()

params() public method Sets the parameters to be bound to the query. See also addParams(). public $this params ( $params )$params array List of query parameter values indexed by parameter placeholders. For example, [':name' => 'Dan', ':age' => 31]. return $this The query object itself