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