1 | <?php |
||
19 | class LockBackend implements BackendInterface |
||
20 | { |
||
21 | /** |
||
22 | * Filesystem. |
||
23 | * |
||
24 | * @var Filesystem |
||
25 | */ |
||
26 | protected $fs; |
||
27 | |||
28 | /** |
||
29 | * Constructor. |
||
30 | */ |
||
31 | public function __construct(Server $server) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getLocks($uri, $returnChildLocks) |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function lock($uri, LockInfo $lock) |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function unlock($uri, LockInfo $lock) |
||
75 | } |
||
76 |