From 71323da83a119c66c4ce7ae203db872f9fe6329d Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Tue, 22 Nov 2022 06:30:24 -0800 Subject: [PATCH] Lint php --- lib/Controller/VideoController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Controller/VideoController.php b/lib/Controller/VideoController.php index 4d27800f..2dd77f54 100644 --- a/lib/Controller/VideoController.php +++ b/lib/Controller/VideoController.php @@ -184,7 +184,7 @@ class VideoController extends ApiBase $response = new DataDisplayResponse($blob, Http::STATUS_OK, []); $response->setHeaders([ 'Content-Type' => $liveFile->getMimeType(), - 'Content-Disposition' => "attachment; filename=\"$name\"", + 'Content-Disposition' => "attachment; filename=\"{$name}\"", ]); $response->cacheFor(3600 * 24, false, false);