Passed
Push — master ( 541190...c2c621 )
by Shahrad
17:40
created
src/CrashPad.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         }
80 80
 
81 81
         if (!Telegram::validateToken($_ENV['TELEGRAM_BOT_TOKEN'] ?? '')) {
82
-          Telegram::tryAutoloadEnv();
82
+            Telegram::tryAutoloadEnv();
83 83
         }
84 84
 
85 85
         if (($token = self::loadToken()) === null) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public static function enableCrashHandler(): void
25 25
     {
26
-        $handler = function (Throwable $throwable) {
26
+        $handler = function(Throwable $throwable) {
27 27
             if (Telegram::getAdminId() !== -1) {
28 28
                 $input = Telegram::getInput();
29 29
                 CrashPad::sendCrash(Telegram::getAdminId(), $throwable, $input);
Please login to merge, or discard this patch.