blob: 4b9a0d65333a0ee9be641c908ae91953898526cc (
plain)
1
2
3
4
5
6
7
8
|
<?php
namespace Digitigrade;
interface HttpResponseStatus extends \Throwable {
public function httpCode(): int;
public function httpReason(): string;
public function httpHeaders();
}
|