Passed
Push — master ( bc5f58...5ee582 )
by Vladimir
03:34
created
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/Commands/SendMessage.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\Commands;
6 6
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         return $this->text;
50 50
     }
51 51
 
52
-    public function getTemplate(): ?Template
52
+    public function getTemplate(): ? Template
53 53
     {
54 54
         return $this->template;
55 55
     }
Please login to merge, or discard this patch.
src/Drivers/TemplateCompiler.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.