Passed
Pull Request — master (#21)
by
unknown
38:35
created
src/MessageBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     public function withEntityId($id): self
27 27
     {
28 28
         $new = clone $this;
29
-        $new->message->entityId = (string)$id;
29
+        $new->message->entityId = (string) $id;
30 30
         return $new;
31 31
     }
32 32
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         return $new;
45 45
     }
46 46
 
47
-    public function withAction(string|null $action): self
47
+    public function withAction(string | null $action): self
48 48
     {
49 49
         $new = clone $this;
50 50
         $new->message->action = $action;
Please login to merge, or discard this patch.
src/MessageBuilderInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     public function withUserName(string $name): self;
23 23
 
24
-    public function withAction(string|null $action): self;
24
+    public function withAction(string | null $action): self;
25 25
 
26 26
     public function withEnv(string $env): self;
27 27
 
Please login to merge, or discard this patch.