From 56b3647ec0013ac7418888c67ef6085754f61e28 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 22 Feb 2018 14:49:04 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/danog/MadelineProto/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/danog/MadelineProto/Connection.php b/src/danog/MadelineProto/Connection.php index 24a1ab92..6eb7c625 100644 --- a/src/danog/MadelineProto/Connection.php +++ b/src/danog/MadelineProto/Connection.php @@ -363,7 +363,7 @@ class Connection $headers[] = $current_header; } $read = $this->read($length); - $headers[0] = explode(" ", $headers[0], 3); + $headers[0] = explode(' ', $headers[0], 3); if ($headers[0][1] !== '200') { throw new Exception($headers[0][2]); }