aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/getting-started/getting-started-maven.asciidoc
Commit message (Expand)AuthorAgeFilesLines
* Update documentation, BoV chapters 1 - 5.3 (#8085)Pekka Hyvönen2017-01-021-12/+2
* BoV: Updated library list in Getting Started to Vaadin 8.Sami Ekblad2016-08-051-1/+1
* Add basic AppWidgetset documentationTeemu Suo-Anttila2016-07-121-10/+10
* Fixed some missing images and broken xrefs, as well as problems in the gettin...Marko Gronroos2016-03-181-27/+5
* Reorganized the Getting Started chapter to separate installation and project ...Marko Gronroos2016-03-171-8/+6
* Formatting fixes mainly to chapters 1-4.Marko Gronroos2016-03-161-15/+32
* Add documentation to master branchMarkus Koivisto2016-01-221-0/+133
* Revert "Merge branch 'documentation'"7.6.0.beta2Ilia Motornyi2015-12-031-133/+0
* Framework documentation INelmot2015-09-251-0/+133
ted/noid/stable26-update-ca-cert-bundle Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/lib/Sabre/TrashFolderFile.php
blob: 37e70b717ae81317bf7d04575319ae0a71c844b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\Files_Trashbin\Sabre;

class TrashFolderFile extends AbstractTrashFile {
	public function get() {
		return $this->data->getStorage()->fopen($this->data->getInternalPath(), 'rb');
	}
}