Passed
Push — master ( 7b906a...2e1565 )
by William
03:36
created
src/UtfString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         $this->byteIdx = 0;
191 191
         $this->charIdx = 0;
192 192
         $this->byteLen = mb_strlen($str, '8bit');
193
-        if (! mb_check_encoding($str, 'UTF-8')) {
193
+        if (!mb_check_encoding($str, 'UTF-8')) {
194 194
             $this->charLen = 0;
195 195
         } else {
196 196
             $this->charLen = mb_strlen($str, 'UTF-8');
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
         // Use the default ASCII map as queries are mostly ASCII chars
299 299
         // ord($byte) has a performance cost
300 300
 
301
-        if (! isset(static::$asciiMap[$byte])) {
301
+        if (!isset(static::$asciiMap[$byte])) {
302 302
             // Complete the cache with missing items
303 303
             static::$asciiMap[$byte] = ord($byte);
304 304
         }
Please login to merge, or discard this patch.