lithium\action\Request::__isset()

public method

Allows request parameters to be checked using short-hand notation. See the __get() method for more details.

Parameters

  • string $name

    The name of the request parameter to check.

Returns

boolean

Returns true if the key in $name is set in the $params array, otherwise false.

Source

	public function __isset($name) {
		return isset($this->params[$name]);
	}