From 020e03de72319639164a371640f5ea55b726c3d8 Mon Sep 17 00:00:00 2001 From: Hans van den Bogert Date: Thu, 20 Sep 2018 23:54:42 +0200 Subject: [PATCH] copy-stream: Remove superfluous return statement --- public/copy-stream.php | 1 - 1 file changed, 1 deletion(-) diff --git a/public/copy-stream.php b/public/copy-stream.php index 41834b7..e68f464 100644 --- a/public/copy-stream.php +++ b/public/copy-stream.php @@ -24,7 +24,6 @@ ->withHeader('Content-Type', 'image/jpeg') ->withHeader('Content-Length', (string) filesize($image)) ->withBody(new Stream($image)); - return $response; }, $_SERVER, $_GET, $_POST, $_COOKIE, $_FILES); $server->listen();