1<?php 2 3namespace Sabre\CalDAV\Principal; 4 5use Sabre\DAVACL; 6 7/** 8 * ProxyWrite 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 IProxyWrite extends DAVACL\IPrincipal { 18 19} 20