diff --git a/Connection.php b/Connection.php index ebfd698..46f83e6 100644 --- a/Connection.php +++ b/Connection.php @@ -160,7 +160,7 @@ class Connection extends Component } [$client, $time] = $data; - file_put_contents('php://output', ((time() - $time) . ' ' . $this->idle_time), FILE_APPEND); + file_put_contents('php://output', ((time() - $time) . ' ' . $this->idle_time) . PHP_EOL, FILE_APPEND); if ((time() - $time) < $this->idle_time && $this->canUse($client)) { return $client; }