Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 2.1481 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | 6 | public function __construct( |
|
8 | private ?string $applicationName, |
||
9 | private ?string $locale = null, |
||
10 | private ?string $applicationVersion = null) |
||
11 | { |
||
12 | 6 | if(null !== $applicationVersion){ |
|
13 | $this->applicationVersion = trim($this->applicationVersion); |
||
1 ignored issue
–
show
|
|||
14 | } |
||
32 |