Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
41 | 886 | public function __construct(string $state, int $length, int $numberOfDigits, string $regex, string $format) |
|
42 | { |
||
43 | 886 | $this->state = $state; |
|
44 | 886 | $this->length = $length; |
|
45 | 886 | $this->regex = $regex; |
|
46 | 886 | $this->format = $format; |
|
47 | 886 | $this->numberOfDigits = $numberOfDigits; |
|
48 | } |
||
114 |