for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Furious\Psr7\Response;
use Furious\Psr7\Response;
class EmptyResponse extends Response
{
public function __construct(array $headers = [], $body = null, string $version = '1.1', string $reason = null)
parent::__construct(204, $headers, '', $version, $reason);
}