send() public method

Sends the response
public send ( ) : void
return void
コード例 #1
0
 /**
  * Checks if compile time command was not recognized as such, then runlevel was
  * booted but it turned out that in fact the command is a compile time command.
  *
  * This happens if the user doesn't specify the full command identifier.
  *
  * @param string $runlevel one of the Bootstrap::RUNLEVEL_* constants
  * @return void
  */
 public function exitIfCompiletimeCommandWasNotCalledCorrectly($runlevel)
 {
     if ($runlevel === Bootstrap::RUNLEVEL_COMPILETIME) {
         return;
     }
     $command = $this->request->getCommand();
     if ($this->bootstrap->isCompiletimeCommand($command->getCommandIdentifier())) {
         $this->response->appendContent(sprintf("<b>Unrecognized Command</b>\n\n" . "Sorry, but he command \"%s\" must be specified by its full command\n" . "identifier because it is a compile time command which cannot be resolved\n" . "from an abbreviated command identifier.\n\n", $command->getCommandIdentifier()));
         $this->response->send();
         $this->shutdown($runlevel);
         exit(1);
     }
 }
コード例 #2
0
 /**
  * Formats and echoes the exception and its previous exceptions (if any) for the command line
  *
  * @param object $exception \Exception or \Throwable
  * @return void
  */
 protected function echoExceptionCli($exception)
 {
     $response = new CliResponse();
     $exceptionMessage = $this->renderSingleExceptionCli($exception);
     while (($exception = $exception->getPrevious()) !== null) {
         $exceptionMessage .= PHP_EOL . '<u>Nested exception:</u>' . PHP_EOL;
         $exceptionMessage .= $this->renderSingleExceptionCli($exception);
     }
     $response->setContent($exceptionMessage);
     $response->send();
     exit(1);
 }
コード例 #3
0
 /**
  * Sends the response and exits the CLI without any further code execution
  * Should be used for commands that flush code caches.
  *
  * @param integer $exitCode Exit code to return on exit
  * @return void
  */
 protected function sendAndExit($exitCode = 0)
 {
     $this->response->send();
     exit($exitCode);
 }
コード例 #4
0
 /**
  * Displays a human readable, partly beautified version of the given exception
  * and stops the application, return a non-zero exit code.
  *
  * @param \Exception $exception
  * @return void
  */
 protected function handleException(\Exception $exception)
 {
     $response = new Response();
     $exceptionMessage = '';
     $exceptionReference = "\n<b>More Information</b>\n";
     $exceptionReference .= "  Exception code      #" . $exception->getCode() . "\n";
     $exceptionReference .= "  File                " . $exception->getFile() . ($exception->getLine() ? ' line ' . $exception->getLine() : '') . "\n";
     $exceptionReference .= $exception instanceof FlowException ? "  Exception reference #" . $exception->getReferenceCode() . "\n" : '';
     foreach (explode(chr(10), wordwrap($exception->getMessage(), 73)) as $messageLine) {
         $exceptionMessage .= "  {$messageLine}\n";
     }
     $response->setContent(sprintf("<b>Uncaught Exception</b>\n%s%s\n", $exceptionMessage, $exceptionReference));
     $response->send();
     exit(1);
 }