Completed
Push — master ( 0d58f5...ffe69c )
by Robert
05:12
created
src/Entity/Contacts.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;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Bot/Update.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\Bot;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Bot/Update/ShortSentMessage.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\Bot\Update;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Bot/Update/UpdateData.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\Bot\Update;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Bot/Update/UpdateData/Message.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\Bot\Update\UpdateData;
6 6
 
Please login to merge, or discard this patch.
src/Entity/User.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;
6 6
 
Please login to merge, or discard this patch.
src/Entity/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;
6 6
 
Please login to merge, or discard this patch.
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
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     public function findUserByFullName(string $name): ?User
37 37
     {
38 38
         /** @noinspection PhpIncompatibleReturnTypeInspection */
39
-        return $this->getUserMatcher()->matchFirst($name, function (User $user) {
39
+        return $this->getUserMatcher()->matchFirst($name, function(User $user) {
40 40
             return $user->getFullName();
41 41
         });
42 42
     }
Please login to merge, or discard this patch.
src/Entity/General/AbstractEntity.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\General;
6 6
 
Please login to merge, or discard this patch.