for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Author: Jairo Rodríguez <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace BFunky\HttpParser;
use BFunky\HttpParser\Entity\HttpResponseHeader;
class HttpResponseParser extends AbstractHttpParser
{
* @inheritdoc
protected function setHttpHeader(string $method, string $path, string $protocol): void
$this->httpHeader = new HttpResponseHeader($method, $path, $protocol);
}