1<?php
2
3namespace Sabre\CalDAV\Principal;
4
5use Sabre\DAVACL;
6
7/**
8 * ProxyRead principal interface
9 *
10 * Any principal node implementing this interface will be picked up as a 'proxy
11 * principal group'.
12 *
13 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
14 * @author Evert Pot (http://evertpot.com/)
15 * @license http://sabre.io/license/ Modified BSD License
16 */
17interface IProxyRead extends DAVACL\IPrincipal {
18
19}
20