@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace GroundSix\Locker; |
| 5 | 5 | |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | /** @var string|null $lockedBy */ |
| 15 | 15 | private $lockedBy; |
| 16 | 16 | |
| 17 | - public function __construct(string $url, ?\DateTimeInterface $lockedUntil = null, ?string $lockedBy = null) |
|
| 17 | + public function __construct(string $url, ? \DateTimeInterface $lockedUntil = null, ? string $lockedBy = null) |
|
| 18 | 18 | { |
| 19 | 19 | $this->url = $url; |
| 20 | 20 | |
@@ -42,12 +42,12 @@ discard block |
||
| 42 | 42 | return $this->url; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - public function lockedUntil(): ?\DateTimeImmutable |
|
| 45 | + public function lockedUntil(): ? \DateTimeImmutable |
|
| 46 | 46 | { |
| 47 | 47 | return $this->lockedUntil; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - public function lockedBy(): ?string |
|
| 50 | + public function lockedBy(): ? string |
|
| 51 | 51 | { |
| 52 | 52 | return $this->lockedBy; |
| 53 | 53 | } |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace GroundSix\Locker; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace GroundSix\Locker; |
| 5 | 5 | |