Completed
Push — master ( 510548...ea029e )
by
unknown
09:51
created
src/Conversation/ConversationManager.php 2 patches
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.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * Start conversation.
59 59
      *
60
-     * @param Conversable|mixed $conversable
60
+     * @param Conversable $conversable
61 61
      */
62 62
     public function converse(Conversable $conversable): void
63 63
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Restart intent or interaction.
93 93
      *
94
-     * @param Conversable|mixed $conversable
94
+     * @param Conversable $conversable
95 95
      */
96 96
     public function restart(Conversable $conversable): void
97 97
     {
Please login to merge, or discard this patch.
src/Contracts/Template.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\Contracts;
6 6
 
Please login to merge, or discard this patch.
src/Channels/Exceptions/ChannelNotFound.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\Channels\Exceptions;
6 6
 
Please login to merge, or discard this patch.
src/Drivers/CommandHandler.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\Drivers;
6 6
 
Please login to merge, or discard this patch.
src/Drivers/Driver.php 1 patch
Spacing   +2 added lines, -2 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\Drivers;
6 6
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @return TemplateCompiler|null
50 50
      */
51
-    abstract public function getTemplateCompiler(): ?TemplateCompiler;
51
+    abstract public function getTemplateCompiler(): ? TemplateCompiler;
52 52
 
53 53
     /**
54 54
      * Get command handler instance.
Please login to merge, or discard this patch.
src/Templates/Keyboard/Button.php 1 patch
Spacing   +2 added lines, -2 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\Templates\Keyboard;
6 6
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      *
16 16
      * @return string
17 17
      */
18
-    public function getLabel(): ?string
18
+    public function getLabel(): ? string
19 19
     {
20 20
         return $this->label;
21 21
     }
Please login to merge, or discard this patch.
src/Drivers/Commands/SendMessage.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\Drivers\Commands;
6 6
 
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
         return $this->recipient;
50 50
     }
51 51
 
52
-    public function getText(): ?string
52
+    public function getText(): ? string
53 53
     {
54 54
         return $this->text;
55 55
     }
56 56
 
57
-    public function getTemplate(): ?Template
57
+    public function getTemplate(): ? Template
58 58
     {
59 59
         return $this->template;
60 60
     }
Please login to merge, or discard this patch.
src/Contracts/Driver.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\Contracts;
6 6
 
Please login to merge, or discard this patch.
src/Drivers/DriverManager.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\Drivers;
6 6
 
Please login to merge, or discard this patch.