Completed
Push — master ( 0d58f5...ffe69c )
by Robert
05:12
created
src/Madeline/Auth/Handler/Exception/AuthHandlerException.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\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Madeline/Auth/Handler/AbstractAuthHandler.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.
src/Madeline/Auth/Handler/ClientAuthHandler.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.
src/Madeline/Auth/Handler/AuthHandlerCollection.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\Madeline\Auth\Handler;
6 6
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function get(AuthConfigInterface $config): AuthHandlerInterface
30 30
     {
31 31
         $handler = (new ConditionMatch($this->handlers))->find(
32
-            function (AuthHandlerInterface $currentHandler) use ($config) {
32
+            function(AuthHandlerInterface $currentHandler) use ($config) {
33 33
                 return $currentHandler->suits($config);
34 34
             }
35 35
         );
Please login to merge, or discard this patch.
src/Madeline/Auth/Handler/AuthHandlerInterface.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.
src/Madeline/Auth/Prompt/ReadlinePrompt.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\Prompt;
6 6
 
Please login to merge, or discard this patch.
src/Madeline/Auth/Prompt/PromptInterface.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\Prompt;
6 6
 
Please login to merge, or discard this patch.
src/Madeline/Config/LogLevel.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\Config;
6 6
 
Please login to merge, or discard this patch.
src/Madeline/Config/Auth/ClientAuth.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\Config\Auth;
6 6
 
Please login to merge, or discard this patch.