Passed
Push — master ( c134fa...78024d )
by Armando
03:11
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/Poll.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
  * @method string       getType()                  Poll type, currently can be “regular” or “quiz”
28 28
  * @method bool         getAllowsMultipleAnswers() True, if the poll allows multiple answers
29 29
  * @method int          getCorrectOptionId()       Optional. 0-based identifier of the correct answer option. Available only for polls in the quiz mode, which are closed, or was sent (not forwarded) by the bot or to the private chat with the bot.
30
-
31 30
  */
32 31
 class Poll extends Entity
33 32
 {
Please login to merge, or discard this patch.