Completed
Push — master ( 4317fb...cd535a )
by Vladimir
02:31
created
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.
src/Channels/VkCommunity/VkCommunityDriver.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\VkCommunity;
6 6
 
Please login to merge, or discard this patch.
src/Channels/VkCommunity/VkCommunityUser.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\Channels\VkCommunity;
6 6
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @return string|null
32 32
      */
33
-    public function getName(): ?string
33
+    public function getName(): ? string
34 34
     {
35 35
         return $this->payload['first_name'].' '.$this->payload['last_name'];
36 36
     }
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @return string|null
42 42
      */
43
-    public function getUsername(): ?string
43
+    public function getUsername(): ? string
44 44
     {
45 45
         return null;
46 46
     }
Please login to merge, or discard this patch.
src/Channels/VkCommunity/VkCommunityOutgoingMessage.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\Channels\VkCommunity;
6 6
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * @return Keyboard|null
48 48
      */
49
-    public function getKeyboard(): ?Keyboard
49
+    public function getKeyboard(): ? Keyboard
50 50
     {
51 51
         return $this->keyboard;
52 52
     }
Please login to merge, or discard this patch.
src/Channels/Telegram/TelegramDriver.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\Telegram;
6 6
 
Please login to merge, or discard this patch.
src/Channels/Telegram/TelegramOutgoingMessage.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\Channels\Telegram;
6 6
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * @return Keyboard|null
48 48
      */
49
-    public function getKeyboard(): ?Keyboard
49
+    public function getKeyboard(): ? Keyboard
50 50
     {
51 51
         return $this->keyboard;
52 52
     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         return $payload;
71 71
     }
72 72
 
73
-    private function getReplyMarkup(): ?array
73
+    private function getReplyMarkup(): ? array
74 74
     {
75 75
         if ($this->keyboard !== null) {
76 76
             $buttons = [];
Please login to merge, or discard this patch.