1<?php 2 3namespace Sabre\CalDAV; 4 5use Sabre\DAVACL; 6 7/** 8 * Calendar interface 9 * 10 * Implement this interface to allow a node to be recognized as an calendar. 11 * 12 * @copyright Copyright (C) fruux GmbH (https://fruux.com/) 13 * @author Evert Pot (http://evertpot.com/) 14 * @license http://sabre.io/license/ Modified BSD License 15 */ 16interface ICalendar extends ICalendarObjectContainer, DAVACL\IACL { 17 18} 19