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\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\Request $isConsoleRequest

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

base\Request $scriptFile

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

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\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 __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 __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 __call()

__call() public method Calls the named method which is not a class method. Do not call this method directly as it is a PHP magic method that will be implicitly called when an unknown method is being invoked. public mixed __call ( $name, $params )$name string The method name $params array Method parameters return mixed The method return value throws yii\base\UnknownMethodException when calling unknown method