Passed
Branch master (741991)
by Anthony
04:24
created
Category
src/Status.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/LockerDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace GroundSix\Locker;
5 5
 
Please login to merge, or discard this patch.
src/Locker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace GroundSix\Locker;
5 5
 
Please login to merge, or discard this patch.