Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
HttpParams | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
configure | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace Olz\Utils; |
4 | |
5 | use PhpTypeScriptApi\PhpStan\PhpStanUtils; |
6 | |
7 | /** |
8 | * @template-covariant T of array |
9 | */ |
10 | class HttpParams { |
11 | public PhpStanUtils $phpStanUtils; |
12 | |
13 | public function __construct() { |
14 | $this->phpStanUtils = new PhpStanUtils(); |
15 | } |
16 | |
17 | public function configure(): void { |
18 | // Do nothing by default |
19 | } |
20 | } |