@@ -26,7 +26,7 @@ discard block |
||
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 |
||
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; |
@@ -21,7 +21,7 @@ |
||
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 |