@@ -190,7 +190,7 @@ discard block |
||
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 |
||
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 | } |