Test Setup Failed
Push — main ( ab2c03...5e665b )
by Vasil
03:31
created

Configuration::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 2
1
<?php
2
3
namespace VasilDakov\Econt;
4
5
final class Configuration
6
{
7
    public function __construct(
8
        public string $username,
9
        public string $password,
10
    ) {
11
    }
12
}
13