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: 4ff6499a195c15e1c699988612d9e5083f31a90c (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace OCA\OJSXC;

interface ILock {

	public function setLock();

	public function stillLocked();

}