Completed
Push — getupdates_without_db_docs ( 0af266 )
by Armando
03:59
created
src/Entities/InlineKeyboardButton.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,12 +44,12 @@
 block discarded – undo
44 44
     {
45 45
         return is_array($data) &&
46 46
                array_key_exists('text', $data) && (
47
-                   array_key_exists('url', $data) ||
47
+                    array_key_exists('url', $data) ||
48 48
                    array_key_exists('callback_data', $data) ||
49 49
                    array_key_exists('switch_inline_query', $data) ||
50 50
                    array_key_exists('switch_inline_query_current_chat', $data) ||
51 51
                    array_key_exists('pay', $data)
52
-               );
52
+                );
53 53
     }
54 54
 
55 55
     /**
Please login to merge, or discard this patch.
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.