Directory.php 484 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Directory class
  4. *
  5. * This class is now deprecated in favor of the Sabre_DAV_Collection class.
  6. *
  7. * @package Sabre
  8. * @subpackage DAV
  9. * @deprecated Use Sabre_DAV_Collection instead
  10. * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
  11. * @author Evert Pot (http://www.rooftopsolutions.nl/)
  12. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  13. */
  14. abstract class Sabre_DAV_Directory extends Sabre_DAV_Collection {
  15. }