@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace FondBot\Conversation; |
| 6 | 6 | |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * |
| 71 | 71 | * @return Story|null |
| 72 | 72 | */ |
| 73 | - public function getStory(): ?Story |
|
| 73 | + public function getStory(): ? Story |
|
| 74 | 74 | { |
| 75 | 75 | return $this->story; |
| 76 | 76 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * |
| 91 | 91 | * @return Interaction|null |
| 92 | 92 | */ |
| 93 | - public function getInteraction(): ?Interaction |
|
| 93 | + public function getInteraction(): ? Interaction |
|
| 94 | 94 | { |
| 95 | 95 | return $this->interaction; |
| 96 | 96 | } |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | * |
| 101 | 101 | * @param Interaction|null $interaction |
| 102 | 102 | */ |
| 103 | - public function setInteraction(?Interaction $interaction): void |
|
| 103 | + public function setInteraction(? Interaction $interaction) : void |
|
| 104 | 104 | { |
| 105 | 105 | $this->interaction = $interaction; |
| 106 | 106 | } |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace FondBot\Conversation; |
| 6 | 6 | |