lithium\action\Response::__toString()
Overrides
lithium\net\Message::__toString()
Casts the Response object to a string. This doesn't actually return a string, but does a direct render and returns an empty string.
Returns
stringJust an empty string to satify requirements of this magic method.
Source
public function __toString() {
$this->render();
return '';
}