Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 8 | public function __construct( |
|
20 | string $url, |
||
21 | string $description = null, |
||
22 | ServerVariables $variables = null, |
||
23 | Extensions $extensions = null |
||
24 | ) { |
||
25 | 8 | $this->url = $url; |
|
26 | 8 | $this->description = $description; |
|
27 | 8 | $this->variables = $variables; |
|
28 | 8 | $this->extensions = $extensions; |
|
29 | } |
||
30 | |||
66 |