Completed
Push — master ( 269bc3...61fa52 )
by Vladimir
36:35
created
src/Bot.php 1 patch
Spacing   +3 added lines, -3 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;
6 6
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      *
89 89
      * @return Context|null
90 90
      */
91
-    public function getContext(): ?Contracts\Conversation\Context
91
+    public function getContext(): ? Contracts\Conversation\Context
92 92
     {
93 93
         return $this->context;
94 94
     }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         string $text,
199 199
         Keyboard $keyboard = null,
200 200
         string $driver = null
201
-    ): ?OutgoingMessage {
201
+    ): ? OutgoingMessage {
202 202
         if ($driver !== null && !$this->driver instanceof $driver) {
203 203
             return null;
204 204
         }
Please login to merge, or discard this patch.