Date.php 393 B

123456789101112131415161718
  1. <?php
  2. namespace Sabre\VObject\Property\ICalendar;
  3. /**
  4. * DateTime property
  5. *
  6. * This object represents DATE values, as defined here:
  7. *
  8. * http://tools.ietf.org/html/rfc5545#section-3.3.5
  9. *
  10. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  11. * @author Evert Pot (http://evertpot.com/)
  12. * @license http://sabre.io/license/ Modified BSD License
  13. */
  14. class Date extends DateTime {
  15. }