Completed
Push — master ( e273f3...bec85d )
by Vladimir
02:28
created
src/Conversation/Context.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Conversation/Keyboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Conversation;
6 6
 
Please login to merge, or discard this patch.