ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
GeneralLock.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Lock;
22
23use Sabre\DAV\Locks\Plugin;
25
29class GeneralLock extends Plugin
30{
31 public function __construct(
32 Factory $entity_factory,
33 LocksRepository $locks_repository
34 ) {
36 new Backend(
37 $entity_factory,
38 $locks_repository
39 )
40 );
41 }
42
43}
__construct(Factory $entity_factory, LocksRepository $locks_repository)
Definition: GeneralLock.php:31
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc