Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
50.00% covered (danger)
50.00%
1 / 2
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
HttpParams
50.00% covered (danger)
50.00%
1 / 2
50.00% covered (danger)
50.00%
1 / 2
2.50
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 configure
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace Olz\Utils;
4
5use PhpTypeScriptApi\PhpStan\PhpStanUtils;
6
7/**
8 * @template-covariant T of array
9 */
10class 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}