IAppData.php 286 B

12345678910111213141516
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Files;
  7. use OCP\Files\SimpleFS\ISimpleRoot;
  8. /**
  9. * Interface IAppData
  10. *
  11. * @since 11.0.0
  12. */
  13. interface IAppData extends ISimpleRoot {
  14. }