Completed
Push — master ( 0d58f5...ffe69c )
by Robert
05:12
created
src/TelegramApi.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;
6 6
 
Please login to merge, or discard this patch.
src/Exception/TelegramApiException.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\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Exception/TelegramApiFactoryException.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\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Bot/Factory/BotFactory.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\Bot\Factory;
6 6
 
Please login to merge, or discard this patch.
src/Bot/Update/UpdateHandlerInterface.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\Bot\Update;
6 6
 
Please login to merge, or discard this patch.
src/Bot/Update/UpdateInterface.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\Bot\Update;
6 6
 
Please login to merge, or discard this patch.
src/Bot/BotInterface.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\Bot;
6 6
 
Please login to merge, or discard this patch.
src/Bot/UpdateBot.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\Bot;
6 6
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function listen(array $updateHandlers): void
37 37
     {
38
-        $this->repeater->repeat(function () use ($updateHandlers) {
38
+        $this->repeater->repeat(function() use ($updateHandlers) {
39 39
             foreach ($this->getUpdates() as $update) {
40 40
                 foreach ($updateHandlers as $handler) {
41 41
                     $handler->handle($update);
Please login to merge, or discard this patch.
src/Madeline/Auth/Handler/BotAuthHandler.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\Madeline\Auth\Handler;
6 6
 
Please login to merge, or discard this patch.