From 7b7fdf2723adda17251387ba76a899bbfc9d46fe Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 3 Sep 2018 11:05:21 -0400 Subject: s/get_headers /get_headers() / --- src/ZipStream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZipStream.php b/src/ZipStream.php index 3f2d480..ecb7167 100644 --- a/src/ZipStream.php +++ b/src/ZipStream.php @@ -205,7 +205,7 @@ final class HTTPResponseWriter implements Writer { */ public function open() : void { # write response headers - foreach ($this->get_headers as $key => $val) { + foreach ($this->get_headers() as $key => $val) { header("$key: $val"); } } -- cgit v1.2.3