diff --git a/lib/Client.php b/lib/Client.php index 1766dd0..24b6ec9 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -317,7 +317,7 @@ public function makeAllRequests($requests = []) if (empty($requests)) { $requests = $this->savedRequests; } - list ($channels, $multiHandle) = $this->createCurlMultiHandle($requests); + list($channels, $multiHandle) = $this->createCurlMultiHandle($requests); // running all requests $isRunning = null; diff --git a/lib/Response.php b/lib/Response.php index 47be104..5233c4d 100644 --- a/lib/Response.php +++ b/lib/Response.php @@ -77,11 +77,11 @@ public function headers($assoc = false) /** * Returns response headers as associative array - * + * * @param array $headers * * @return array - * + * * @throws \InvalidArgumentException */ private function prettifyHeaders($headers) @@ -103,7 +103,7 @@ function ($result, $header) { return $result; } - list ($key, $value) = explode(':', $header, 2); + list($key, $value) = explode(':', $header, 2); $result[trim($key)] = trim($value); return $result; diff --git a/test/unit/FilesExistTest.php b/test/unit/FilesExistTest.php index fbba1d9..340167c 100644 --- a/test/unit/FilesExistTest.php +++ b/test/unit/FilesExistTest.php @@ -28,4 +28,3 @@ public function testFileArePresentInRepo() #$this->assertTrue($composeExists); } } - diff --git a/test/unit/LicenceYearTest.php b/test/unit/LicenceYearTest.php index 515a26c..1a99529 100644 --- a/test/unit/LicenceYearTest.php +++ b/test/unit/LicenceYearTest.php @@ -17,5 +17,4 @@ public function testConstructor() $this->assertEquals($expected, $copyright); } - }