contentSent; } /** * Set the error level that will be returned to shell. * * @param int $errorLevel * @return Response */ public function setErrorLevel($errorLevel) { $this->setMetadata('errorLevel', $errorLevel); return $this; } /** * Get response error level that will be returned to shell. * * @return int|0 */ public function getErrorLevel() { return $this->getMetadata('errorLevel', 0); } /** * Send content * * @return Response * @deprecated */ public function sendContent() { if ($this->contentSent()) { return $this; } echo $this->getContent(); $this->contentSent = true; return $this; } /** * @deprecated */ public function send() { $this->sendContent(); $errorLevel = (int) $this->getMetadata('errorLevel',0); exit($errorLevel); } }