IOutbox.php 379 B

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