2018-04-16 08:14:31 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-04-25 14:24:23 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-04-16 08:14:31 -04:00
|
|
|
/**
|
2024-06-02 09:26:54 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-04-16 08:14:31 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\Files_Trashbin\Sabre;
|
|
|
|
|
|
2018-09-10 08:40:35 -04:00
|
|
|
class TrashFolderFile extends AbstractTrashFile {
|
2018-04-16 08:14:31 -04:00
|
|
|
public function get() {
|
|
|
|
|
return $this->data->getStorage()->fopen($this->data->getInternalPath(), 'rb');
|
|
|
|
|
}
|
|
|
|
|
}
|