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