Passed
Push — master ( a85aeb...922d24 )
by Vladimir
08:38
created
src/Application/Kernel.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\Application;
6 6
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      *
44 44
      * @return Channel|null
45 45
      */
46
-    public function getChannel(): ?Channel
46
+    public function getChannel(): ? Channel
47 47
     {
48 48
         return $this->channel;
49 49
     }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @return AbstractDriver|null
65 65
      */
66
-    public function getDriver(): ?AbstractDriver
66
+    public function getDriver(): ? AbstractDriver
67 67
     {
68 68
         return $this->driver;
69 69
     }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      *
84 84
      * @return Session|null
85 85
      */
86
-    public function getSession(): ?Session
86
+    public function getSession(): ? Session
87 87
     {
88 88
         return $this->session;
89 89
     }
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.