nextcloud/3rdparty/Sabre/DAV/SimpleDirectory.php

22 lines
646 B
PHP
Raw Normal View History

2011-07-20 17:53:34 +04:00
<?php
/**
* SimpleDirectory
*
* The SimpleDirectory is used to quickly setup static directory structures.
* Just create the object with a proper name, and add children to use it.
*
2011-08-02 21:38:44 +04:00
* This class is now deprecated, use Sabre_DAV_SimpleCollection instead.
*
2011-07-20 17:53:34 +04:00
* @package Sabre
* @subpackage DAV
2011-08-02 21:38:44 +04:00
* @deprecated Use Sabre_DAV_SimpleCollection instead.
2011-07-20 17:53:34 +04:00
* @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved.
* @author Evert Pot (http://www.rooftopsolutions.nl/)
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
*/
2011-08-02 21:38:44 +04:00
class Sabre_DAV_SimpleDirectory extends Sabre_DAV_SimpleCollection {
2011-07-20 17:53:34 +04:00
}