1 | <?php |
||
20 | class NullLock implements LockInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function acquire(TaskExecutionInterface $execution) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function refresh(TaskExecutionInterface $execution) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function release(TaskExecutionInterface $execution) |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function isAcquired(TaskExecutionInterface $execution) |
||
53 | } |
||
54 |