Passed
Push — master ( fdc762...498f1b )
by Michal
03:56 queued 45s
created
src/Context.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -307,7 +307,7 @@
 block discarded – undo
307 307
      *
308 308
      * @return int the appropriate flag for the comment type
309 309
      */
310
-    public static function isComment($str, $end=false)
310
+    public static function isComment($str, $end = false)
311 311
     {
312 312
         $len = strlen($str);
313 313
         if ($str[0] === '#') {
Please login to merge, or discard this patch.
src/UtfString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         $this->byteIdx = 0;
76 76
         $this->charIdx = 0;
77 77
         $this->byteLen = mb_strlen($str, '8bit');
78
-        if (! mb_check_encoding($str, 'UTF-8')) {
78
+        if (!mb_check_encoding($str, 'UTF-8')) {
79 79
             $this->charLen = 0;
80 80
         } else {
81 81
             $this->charLen = mb_strlen($str, 'UTF-8');
Please login to merge, or discard this patch.