public function __construct(StorageInterface $storage, SessionInterface $session, ChunkStorageInterface $chunkStorage, $config, $type)
 {
     parent::__construct($config['directory']);
     // We can just ignore the chunkstorage here, it's not needed to access the files
     $this->storage = $storage;
     $this->session = $session;
     $this->config = $config;
     $this->type = $type;
 }