Furious-PHP/psr7

View on GitHub
src/Response/EmptyResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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);
    }
}