Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
InvalidHttpVerbException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace pvc\http\err; |
4 | |
5 | use pvc\err\stock\LogicException; |
6 | |
7 | class InvalidHttpVerbException extends LogicException |
8 | { |
9 | public function __construct(string $badHttpVerb, ?\Throwable $previous = null) |
10 | { |
11 | parent::__construct($badHttpVerb, $previous); |
12 | } |
13 | } |