Skip to content

Commit a5f3a64

Browse files
committed
Fixed backward compatibility issue
1 parent 79a36f5 commit a5f3a64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CacheServer/CacheServer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ public function run()
6969
$this->clients[$clientId] = $connection;
7070
socket_set_nonblock($connection);
7171
$read = $this->clients;
72-
$write = [];
73-
$except = [];
72+
$write = array();
73+
$except = array();
7474
socket_select($read, $write, $except, null);
7575
$this->maintainer->checkBackup(time(), $this->bucket);
7676
$dataString = $this->ioHandler->readFromSocket($connection);

0 commit comments

Comments
 (0)