IOutbox.php 404 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CalDAV\Schedule;
  4. /**
  5. * Implement this interface to have a node be recognized as a CalDAV scheduling
  6. * outbox.
  7. *
  8. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  9. * @author Evert Pot (http://evertpot.com/)
  10. * @license http://sabre.io/license/ Modified BSD License
  11. */
  12. interface IOutbox extends \Sabre\DAV\ICollection, \Sabre\DAVACL\IACL
  13. {
  14. }