Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
InvalidDtoReflection | |
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 | declare(strict_types=1); |
3 | |
4 | namespace pvc\struct\dto\err; |
5 | |
6 | use pvc\err\stock\LogicException; |
7 | use Throwable; |
8 | |
9 | class InvalidDtoReflection extends LogicException |
10 | { |
11 | public function __construct(string $badClassString, ?Throwable $previous = null) |
12 | { |
13 | parent::__construct($badClassString, $previous); |
14 | } |
15 | } |