2011-07-20 17:53:34 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Directory class
|
|
|
|
*
|
2011-08-02 21:38:44 +04:00
|
|
|
* This class is now deprecated in favor of the Sabre_DAV_Collection class.
|
|
|
|
*
|
2011-07-20 17:53:34 +04:00
|
|
|
* @package Sabre
|
|
|
|
* @subpackage DAV
|
2011-08-02 21:38:44 +04:00
|
|
|
* @deprecated Use Sabre_DAV_Collection 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
|
|
|
abstract class Sabre_DAV_Directory extends Sabre_DAV_Collection {
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|
|
|
|
|