Completed
Push — master ( a9b91a...03525d )
by Robert
09:57
created
src/Entity/General/UsersAwareTrait.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 Zored\Telegram\Entity\General;
6 6
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function findUserByFullName(string $name): ?User
40 40
     {
41 41
         /** @var User|null $user */
42
-        $user = $this->getUserMatcher()->matchFirst($name, function (User $user) {
42
+        $user = $this->getUserMatcher()->matchFirst($name, function(User $user) {
43 43
             return $user->getFullName();
44 44
         });
45 45
 
Please login to merge, or discard this patch.
src/Entity/General/ChatsAwareTrait.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 Zored\Telegram\Entity\General;
6 6
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function findChatByTitle(string $title): ?Chat
30 30
     {
31 31
         /** @var Chat|null $chat */
32
-        $chat = $this->getChatMatcher()->matchFirst($title, function (Chat $chat) {
32
+        $chat = $this->getChatMatcher()->matchFirst($title, function(Chat $chat) {
33 33
             return $chat->getTitle();
34 34
         });
35 35
 
Please login to merge, or discard this patch.
src/Entity/Control/Message/MarkdownMessage.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 Zored\Telegram\Entity\Control\Message;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Control/Message/AbstractMessage.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 Zored\Telegram\Entity\Control\Message;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Control/Message/MessageInterface.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 Zored\Telegram\Entity\Control\Message;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Control/Peer/PeerInterface.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 Zored\Telegram\Entity\Control\Peer;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Control/Peer/Chat.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 Zored\Telegram\Entity\Control\Peer;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Control/Peer/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 Zored\Telegram\Entity\Control\Peer;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Control/Peer/PeerFactory.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 Zored\Telegram\Entity\Control\Peer;
6 6
 
Please login to merge, or discard this patch.