faker\FixtureController $fixtureDataPath

$fixtureDataPath public property Alias to the fixture data path, where data files should be written. public string $fixtureDataPath = '@tests/unit/fixtures/data'

gii\generators\controller\Generator $baseClass

$baseClass public property The base class of the controller public string $baseClass = 'yii\web\Controller'

base\Event $name

$name public property The event name. This property is set by yii\base\Component::trigger() and trigger(). Event handlers may use this property to check what event it is handling. public string $name = null

filters\auth\AuthMethod handleFailure()

handleFailure() public method Handles authentication failure. The implementation should normally throw UnauthorizedHttpException to indicate authentication failure. public void handleFailure ( $response )$response yii\web\Response throws yii\web\UnauthorizedHttpException

rest\Controller afterAction()

afterAction() public method This method is invoked right after an action is executed. The method will trigger the EVENT_AFTER_ACTION event. The return value of the method will be used as the action return value. If you override this method, your code should look like the following: public function afterAction($action, $result) { $result = parent::afterAction($action, $result); // your custom code here return $result; } public mixed afterAction ( $action, $result )$action yii\

sphinx\Schema getPdoType()

getPdoType() public method Determines the PDO type for the given PHP data value. See also http://www.php.net/manual/en/pdo.constants.php. public integer getPdoType ( $data )$data mixed The data whose PDO type is to be determined return integer The PDO type

db\Query all()

all() public method Executes the query and returns all results as an array. public array all ( $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 array The query results. If the query results in nothing, an empty array will be returned.

mongodb\Session $db

$db public property The MongoDB connection object or the application component ID of the MongoDB connection. After the Session object is created, if you want to change this property, you should only assign it with a MongoDB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\mongodb\Connection|array|string $db = 'mongodb'

web\AssetManager setConverter()

setConverter() public method Sets the asset converter. public void setConverter ( $value )$value array|yii\web\AssetConverterInterface The asset converter. This can be either an object implementing the yii\web\AssetConverterInterface, or a configuration array that can be used to create the asset converter object.

db\Exception getName()

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