Completed
Push — master ( 9a9cfb...e273f3 )
by Vladimir
03:18
created
src/Contracts/Channels/User.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\Contracts\Channels;
6 6
 
@@ -18,12 +18,12 @@  discard block
 block discarded – undo
18 18
      *
19 19
      * @return string|null
20 20
      */
21
-    public function getName(): ?string;
21
+    public function getName(): ? string;
22 22
 
23 23
     /**
24 24
      * Username.
25 25
      *
26 26
      * @return string|null
27 27
      */
28
-    public function getUsername(): ?string;
28
+    public function getUsername(): ? string;
29 29
 }
Please login to merge, or discard this patch.
src/Contracts/Channels/Message/Location.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\Channels\Message;
6 6
 
Please login to merge, or discard this patch.
src/Contracts/Channels/Extensions/WebhookVerification.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\Channels\Extensions;
6 6
 
Please login to merge, or discard this patch.
src/Contracts/Channels/ReceivedMessage.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\Contracts\Channels;
6 6
 
@@ -14,14 +14,14 @@  discard block
 block discarded – undo
14 14
      *
15 15
      * @return string|null
16 16
      */
17
-    public function getText(): ?string;
17
+    public function getText(): ? string;
18 18
 
19 19
     /**
20 20
      * Get location.
21 21
      *
22 22
      * @return Location|null
23 23
      */
24
-    public function getLocation(): ?Location;
24
+    public function getLocation(): ? Location;
25 25
 
26 26
     /**
27 27
      * Determine if message has attachment.
@@ -35,5 +35,5 @@  discard block
 block discarded – undo
35 35
      *
36 36
      * @return Attachment|null
37 37
      */
38
-    public function getAttachment(): ?Attachment;
38
+    public function getAttachment(): ? Attachment;
39 39
 }
Please login to merge, or discard this patch.
src/Contracts/Container/Container.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\Container;
6 6
 
Please login to merge, or discard this patch.
src/Filesystem/File.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\Filesystem;
6 6
 
Please login to merge, or discard this patch.
src/Channels/Channel.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;
6 6
 
Please login to merge, or discard this patch.
src/Channels/Exceptions/ChannelNotFoundException.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/Channels/VkCommunity/VkCommunityReceivedMessage.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\Channels\VkCommunity;
6 6
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      *
23 23
      * @return string|null
24 24
      */
25
-    public function getText(): ?string
25
+    public function getText(): ? string
26 26
     {
27 27
         return $this->payload['body'] ?? null;
28 28
     }
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @return Location|null
34 34
      */
35
-    public function getLocation(): ?Location
35
+    public function getLocation(): ? Location
36 36
     {
37 37
         return null;
38 38
     }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @return Attachment|null
54 54
      */
55
-    public function getAttachment(): ?Attachment
55
+    public function getAttachment(): ? Attachment
56 56
     {
57 57
         return null;
58 58
     }
Please login to merge, or discard this patch.