Mercurial > hg > isophonics-drupal-site
view vendor/zendframework/zend-diactoros/src/Response/SapiEmitter.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | c2387f117808 |
children |
line wrap: on
line source
<?php /** * @see https://github.com/zendframework/zend-diactoros for the canonical source repository * @copyright Copyright (c) 2015-2018 Zend Technologies USA Inc. (http://www.zend.com) * @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License */ namespace Zend\Diactoros\Response; use Psr\Http\Message\ResponseInterface; /** * @deprecated since 1.8.0. The package zendframework/zend-httphandlerrunner * now provides this functionality. */ class SapiEmitter implements EmitterInterface { use SapiEmitterTrait; /** * Emits a response for a PHP SAPI environment. * * Emits the status line and headers via the header() function, and the * body content via the output buffer. * * @param ResponseInterface $response */ public function emit(ResponseInterface $response) { $this->assertNoPreviousOutput(); $this->emitHeaders($response); $this->emitStatusLine($response); $this->emitBody($response); } /** * Emit the message body. * * @param ResponseInterface $response */ private function emitBody(ResponseInterface $response) { echo $response->getBody(); } }