Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ThrowableTrait | |
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 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\Core\Throws; |
6 | |
7 | use Throwable; |
8 | |
9 | trait ThrowableTrait |
10 | { |
11 | public function __construct(string $message = '', int $code = 0, ?Throwable $previous = null) |
12 | { |
13 | parent::__construct($message, $code, $previous); |
14 | } |
15 | } |