mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-28 07:30:28 +01:00
20 lines
425 B
PHP
20 lines
425 B
PHP
<?php
|
|
|
|
namespace Sabre\CalDAV\Principal;
|
|
|
|
use Sabre\DAVACL;
|
|
|
|
/**
|
|
* ProxyWrite principal interface
|
|
*
|
|
* Any principal node implementing this interface will be picked up as a 'proxy
|
|
* principal group'.
|
|
*
|
|
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
|
|
* @author Evert Pot (http://evertpot.com/)
|
|
* @license http://sabre.io/license/ Modified BSD License
|
|
*/
|
|
interface IProxyWrite extends DAVACL\IPrincipal {
|
|
|
|
}
|