@@ -18,7 +18,7 @@ |
||
18 | 18 | public function __construct(float $value) |
19 | 19 | { |
20 | 20 | $this->guard($value); |
21 | - $this->value = $value; |
|
21 | + $this->value=$value; |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | public function getValue(): float |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public function __construct(int $value) |
19 | 19 | { |
20 | 20 | $this->guard($value); |
21 | - $this->value = $value; |
|
21 | + $this->value=$value; |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | public function getValue(): int |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public function __construct(bool $value) |
19 | 19 | { |
20 | 20 | $this->guard($value); |
21 | - $this->value = $value; |
|
21 | + $this->value=$value; |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | public function getValue(): bool |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public function __construct(array $value) |
19 | 19 | { |
20 | 20 | $this->guard($value); |
21 | - $this->value = $value; |
|
21 | + $this->value=$value; |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | public function getValue(): array |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public function __construct(string $value) |
19 | 19 | { |
20 | 20 | $this->guard($value); |
21 | - $this->value = $value; |
|
21 | + $this->value=$value; |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | public function getValue(): string |
@@ -17,11 +17,11 @@ |
||
17 | 17 | |
18 | 18 | private $format; |
19 | 19 | |
20 | - public function __construct(DateTimeImmutable $value, string $format = DateTime::ATOM) |
|
20 | + public function __construct(DateTimeImmutable $value, string $format=DateTime::ATOM) |
|
21 | 21 | { |
22 | 22 | $this->guard($value); |
23 | - $this->value = $value; |
|
24 | - $this->format = $format; |
|
23 | + $this->value=$value; |
|
24 | + $this->format=$format; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | public function getValue(): string |
@@ -17,7 +17,7 @@ |
||
17 | 17 | public function __construct(DateTimeImmutable $value) |
18 | 18 | { |
19 | 19 | $this->guard($value); |
20 | - $this->value = $value; |
|
20 | + $this->value=$value; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | public function getValue(): int |