IProxyRead.php 449 B

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