Casts the Response object to a string. This doesn't actually return a string, but does a direct render and returns null.

Returns

string An empty string.

Source

						public function __toString() {
		$this->render();
		return '';
	}