Преглед на файлове

Do not populate the 'arguments' property if commands received with MONITOR do not carry an argument list.

Daniele Alessandri преди 14 години
родител
ревизия
e507198cc3
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lib/Predis/MonitorContext.php

+ 1 - 1
lib/Predis/MonitorContext.php

@@ -76,7 +76,7 @@ class MonitorContext implements \Iterator {
             'timestamp' => (float) $timestamp,
             'database'  => $database,
             'command'   => substr($command, 1, -1),
-            'arguments' => $arguments ?: '',
+            'arguments' => $arguments,
         );
     }
 }