From 0b0fe4c32f676bc006362eaebb64426ff4f8a0c7 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 8 May 2018 12:52:36 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/danog/MadelineProto/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/danog/MadelineProto/Server.php b/src/danog/MadelineProto/Server.php index 139c4e3f..e22eb814 100644 --- a/src/danog/MadelineProto/Server.php +++ b/src/danog/MadelineProto/Server.php @@ -53,7 +53,7 @@ class Server $timeout = 2; $this->sock->setOption(\SOL_SOCKET, \SO_RCVTIMEO, $timeout); $this->sock->setOption(\SOL_SOCKET, \SO_SNDTIMEO, $timeout); - \danog\MadelineProto\Logger::log("Server started! Listening on ".$this->settings['address'].":".$this->settings['port']); + \danog\MadelineProto\Logger::log('Server started! Listening on '.$this->settings['address'].':'.$this->settings['port']); while (true) { pcntl_signal_dispatch();