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

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLEDfan <tobia@ledfan.be>2016-01-22 10:53:57 +0300
committerLEDfan <tobia@ledfan.be>2016-01-22 10:53:57 +0300
commite5fccf760a788fe184e2fc144bd50e58f05463b8 (patch)
treef285026c95dd3d240fa2bb4e4daf6a9c583e3246 /lib/ilock.php
parentfbd7f8a0865f79b8391602fd8bf138fc71cf50ba (diff)
Code style, cleanup, PHPDoc
Diffstat (limited to 'lib/ilock.php')
-rw-r--r--lib/ilock.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/ilock.php b/lib/ilock.php
index 4ff6499..c0017e0 100644
--- a/lib/ilock.php
+++ b/lib/ilock.php
@@ -2,10 +2,21 @@
namespace OCA\OJSXC;
+/**
+ * Interface ILock
+ *
+ * @package OCA\OJSXC
+ */
interface ILock {
+ /**
+ * @return void
+ */
public function setLock();
+ /**
+ * @return bool
+ */
public function stillLocked();
} \ No newline at end of file