@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | { |
| 189 | 189 | $this->str = $str; |
| 190 | 190 | $this->byteLen = mb_strlen($str, '8bit'); |
| 191 | - if (! mb_check_encoding($str, 'UTF-8')) { |
|
| 191 | + if (!mb_check_encoding($str, 'UTF-8')) { |
|
| 192 | 192 | $this->charLen = 0; |
| 193 | 193 | } else { |
| 194 | 194 | $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 | } |