Blame view
sources/3rdparty/sabre/dav/lib/Sabre/DAV/IExtendedCollection.php
669 Bytes
|
03e52840d
|
1 |
<?php |
|
6d9380f96
|
2 |
namespace Sabre\DAV; |
|
03e52840d
|
3 4 5 6 7 8 |
/** * The IExtendedCollection interface. * * This interface can be used to create special-type of collection-resources * as defined by RFC 5689. * |
|
6d9380f96
|
9 10 11 |
* @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/). * @author Evert Pot (http://evertpot.com/) * @license http://sabre.io/license/ Modified BSD License |
|
03e52840d
|
12 |
*/ |
|
6d9380f96
|
13 |
interface IExtendedCollection extends ICollection {
|
|
03e52840d
|
14 15 16 17 18 19 20 21 22 23 24 25 |
/**
* Creates a new collection
*
* @param string $name
* @param array $resourceType
* @param array $properties
* @return void
*/
function createExtendedCollection($name, array $resourceType, array $properties);
}
|