aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/HttpResponseStatus.php
blob: e169833b1bc6750948ccefeeeeb92cddadc4a107 (plain)
1
2
3
4
5
6
7
<?php
namespace Digitigrade;

interface HttpResponseStatus extends \Throwable {
    public function httpCode(): int;
    public function httpReason(): string;
}