Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ilock.php « lib - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0017e01abc8f809eb66a21cb8055ea4b3604469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace OCA\OJSXC;

/**
 * Interface ILock
 *
 * @package OCA\OJSXC
 */
interface ILock {

	/**
	 * @return void
	 */
	public function setLock();

	/**
	 * @return bool
	 */
	public function stillLocked();

}