From 0ed788560ccfca0f7a0a5eea19f9de8a3ad5cf88 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 30 Mar 2019 18:10:51 +0100 Subject: [PATCH] refactor: PlaylistArchiveStream should call parent constructor --- classes/PlaylistArchiveStream.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/classes/PlaylistArchiveStream.php b/classes/PlaylistArchiveStream.php index 3c45a04..56d32d2 100644 --- a/classes/PlaylistArchiveStream.php +++ b/classes/PlaylistArchiveStream.php @@ -66,6 +66,8 @@ class PlaylistArchiveStream extends TarArchive */ public function __construct(Config $config = null) { + parent::__construct(); + $this->client = new Client(); $this->download = new VideoDownload($config); }