Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
22 | public function __construct(string $value) |
||
23 | { |
||
24 | Assertion::notEmpty($value, "The Traefik Ui username is empty"); |
||
25 | Assertion::regex( |
||
26 | $value, |
||
27 | self::REGEX, |
||
28 | "The Traefik Ui username does not contain only alphanumeric characters." |
||
29 | ); |
||
30 | $this->value = $value; |
||
31 | } |
||
67 | } |