ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
LockInfo.php
Go to the documentation of this file.
1<?php
2
3namespace Sabre\DAV\Locks;
4
15class LockInfo {
16
20 const SHARED = 1;
21
25 const EXCLUSIVE = 2;
26
30 const TIMEOUT_INFINITE = -1;
31
37 public $owner;
38
44 public $token;
45
51 public $timeout;
52
58 public $created;
59
66
70 public $depth = 0;
71
78 public $uri;
79
80}
An exception for terminatinating execution or to throw for unit testing.
LockInfo class.
Definition: LockInfo.php:15
const TIMEOUT_INFINITE
A never expiring timeout.
Definition: LockInfo.php:30
const EXCLUSIVE
An exclusive lock.
Definition: LockInfo.php:25
const SHARED
A shared lock.
Definition: LockInfo.php:20
$depth
Depth of lock, can be 0 or Sabre\DAV\Server::DEPTH_INFINITY.
Definition: LockInfo.php:70