We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a45ee commit 22b6f0fCopy full SHA for 22b6f0f
1 file changed
src/Dashboards/Memcached/Compatibility/CommandTrait.php
@@ -45,7 +45,7 @@ public function command(string $command): ?array {
45
$part = '';
46
$data = [];
47
48
- while (true) {
+ while (!feof($fp)) {
49
$part .= fgets($fp, 1024);
50
$lines = explode("\n", $part);
51
$part = array_pop($lines);
0 commit comments