refactor: PlaylistArchiveStream should call parent constructor

This commit is contained in:
Pierre Rudloff 2019-03-30 18:10:51 +01:00
parent f315343798
commit 0ed788560c
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}