1<?php 2 3namespace Sabre\CardDAV; 4 5/** 6 * IDirectory interface 7 * 8 * Implement this interface to have an addressbook marked as a 'directory'. A 9 * directory is an (often) global addressbook. 10 * 11 * A full description can be found in the IETF draft: 12 * - draft-daboo-carddav-directory-gateway 13 * 14 * @copyright Copyright (C) fruux GmbH (https://fruux.com/) 15 * @author Evert Pot (http://evertpot.com/) 16 * @license http://sabre.io/license/ Modified BSD License 17 */ 18interface IDirectory extends IAddressBook { 19 20} 21