Bolt\Response\BoltResponse::__toString PHP Метод

__toString() публичный Метод

Returns the Response as a string.
public __toString ( ) : string
Результат string The Response as HTML
    public function __toString()
    {
        try {
            return $this->getContent();
        } catch (\Exception $e) {
            return $this->handleException($e);
        }
    }