Magic `__isset` method.
Is triggered by calling isset() or empty() on inaccessible properties, and performs an `isset()` check on for keys in the current `context`.

Parameters

  • string $property The accessed property.

Returns

boolean True if set, false otherwise.

Source

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