Passed
Pull Request — master (#4)
by Hashem
02:44 queued 58s
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.