ISchedulingObject.php 346 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CalDAV\Schedule;
  4. /**
  5. * The SchedulingObject represents a scheduling object in the Inbox collection.
  6. *
  7. * @license http://sabre.io/license/ Modified BSD License
  8. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  9. */
  10. interface ISchedulingObject extends \Sabre\CalDAV\ICalendarObject
  11. {
  12. }