AbstractBackend.php 544 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\DAV\Locks\Backend;
  4. /**
  5. * This is an Abstract clas for lock backends.
  6. *
  7. * Currently this backend has no function, but it exists for consistency, and
  8. * to ensure that if default code is required in the backend, there will be a
  9. * non-bc-breaking way to do so.
  10. *
  11. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  12. * @author Evert Pot (http://evertpot.com/)
  13. * @license http://sabre.io/license/ Modified BSD License
  14. */
  15. abstract class AbstractBackend implements BackendInterface
  16. {
  17. }