IProxyWrite.php 425 B

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