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