base\Request resolve()

resolve() public abstract method Resolves the current request into a route and the associated parameters. public abstract array resolve ( )return array The first element is the route, and the second is the associated parameters.

base\Request getScriptFile()

getScriptFile() public method Returns entry script file path. public string getScriptFile ( )return string Entry script file path (processed w/ realpath()) throws yii\base\InvalidConfigException if the entry script file path cannot be determined automatically.

base\Request getIsConsoleRequest()

getIsConsoleRequest() public method Returns a value indicating whether the current request is made via command line public boolean getIsConsoleRequest ( )return boolean The value indicating whether the current request is made via console

base\Request $scriptFile

$scriptFile public property Entry script file path (processed w/ realpath()) public string getScriptFile ( )public void setScriptFile ( $value )

base\Request $isConsoleRequest

$isConsoleRequest public property The value indicating whether the current request is made via console public boolean getIsConsoleRequest ( )public void setIsConsoleRequest ( $value )

base\Object __unset()

__unset() public method Sets an object property to null. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing unset($object->property). Note that if the property is not defined, this method will do nothing. If the property is read-only, it will throw an exception. See also http://php.net/manual/en/function.unset.php. public void __unset ( $name )$name string The property name throws yii\base\InvalidCallException if the property i

base\Object __set()

__set() public method Sets value of an object property. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $object->property = $value;. See also __get(). public void __set ( $name, $value )$name string The property name or the event name $value mixed The property value throws yii\base\UnknownPropertyException if the property is not defined throws yii\base\InvalidCallException if the property is read-only

base\Object __isset()

__isset() public method Checks if a property is set, i.e. defined and not null. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing isset($object->property). Note that if the property is not defined, false will be returned. See also http://php.net/manual/en/function.isset.php. public boolean __isset ( $name )$name string The property name or the event name return boolean Whether the named property is set (not null).

base\Object __get()

__get() public method Returns the value of an object property. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $value = $object->property;. See also __set(). public mixed __get ( $name )$name string The property name return mixed The property value throws yii\base\UnknownPropertyException if the property is not defined throws yii\base\InvalidCallException if the property is write-only

base\Object __construct()

__construct() public method Constructor. The default implementation does two things: Initializes the object with the given configuration $config. Call init(). If this method is overridden in a child class, it is recommended that the last parameter of the constructor is a configuration array, like $config here. call the parent implementation at the end of the constructor. public void __construct ( $config = [] )$config array Name-value pairs that will be used to initialize the object prop