Passed
Push — master ( 46ca66...86955a )
by Hashem
04:37 queued 02:33
created
src/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      */
184 184
     public function mbJsonEncode(array $input)
185 185
     {
186
-        return preg_replace_callback('/\\\\u([0-9a-zA-Z]{4})/', function ($matches) {
186
+        return preg_replace_callback('/\\\\u([0-9a-zA-Z]{4})/', function($matches) {
187 187
             return mb_convert_encoding(pack('H*', $matches[1]), 'UTF-8', 'UTF-16');
188 188
         },
189 189
             json_encode($input, JSON_UNESCAPED_UNICODE)
Please login to merge, or discard this patch.