Passed
Push — 1093-add_markdownv2_escaping ( 2c5259...213093 )
by Armando
02:01
created
src/Telegram.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -856,7 +856,7 @@
 block discarded – undo
856 856
     protected function ucfirstUnicode($str, $encoding = 'UTF-8')
857 857
     {
858 858
         return mb_strtoupper(mb_substr($str, 0, 1, $encoding), $encoding)
859
-               . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
859
+                . mb_strtolower(mb_substr($str, 1, mb_strlen($str), $encoding), $encoding);
860 860
     }
861 861
 
862 862
     /**
Please login to merge, or discard this patch.
src/Entities/InlineKeyboardButton.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@
 block discarded – undo
49 49
     {
50 50
         return is_array($data) &&
51 51
                array_key_exists('text', $data) && (
52
-                   array_key_exists('url', $data) ||
52
+                    array_key_exists('url', $data) ||
53 53
                    array_key_exists('login_url', $data) ||
54 54
                    array_key_exists('callback_data', $data) ||
55 55
                    array_key_exists('switch_inline_query', $data) ||
56 56
                    array_key_exists('switch_inline_query_current_chat', $data) ||
57 57
                    array_key_exists('callback_game', $data) ||
58 58
                    array_key_exists('pay', $data)
59
-               );
59
+                );
60 60
     }
61 61
 
62 62
     /**
Please login to merge, or discard this patch.