Completed
Push — master ( 4317fb...cd535a )
by Vladimir
02:31
created
src/Conversation/IntentManager.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\Conversation;
6 6
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @return Intent|null
25 25
      */
26
-    public function find(Context $context, ReceivedMessage $message): ?Intent
26
+    public function find(Context $context, ReceivedMessage $message): ? Intent
27 27
     {
28 28
         $intent = $context->getIntent();
29 29
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      *
51 51
      * @return Intent|null
52 52
      */
53
-    private function findActivator(ReceivedMessage $message): ?Intent
53
+    private function findActivator(ReceivedMessage $message): ? Intent
54 54
     {
55 55
         foreach ($this->intents as $intent) {
56 56
             foreach ($intent->activators() as $activator) {
Please login to merge, or discard this patch.
src/Conversation/Intent.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.
src/Contracts/Conversation/Intent.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\Conversation;
6 6
 
Please login to merge, or discard this patch.