dever hace 7 años
padre
commit
cacfcc886f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Queue.php

+ 1 - 1
src/Queue.php

@@ -16,7 +16,7 @@ class Queue
 
 	public function push($value)
 	{
-		$value = json_encode($value);
+		$value = json_encode($value, JSON_UNESCAPED_UNICODE);
 		$this->method->push($value);
 	}