aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Log
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Log')
-rw-r--r--lib/public/Log/IFileBased.php17
1 files changed, 15 insertions, 2 deletions
diff --git a/lib/public/Log/IFileBased.php b/lib/public/Log/IFileBased.php
index e4befbfd632..c0eef472975 100644
--- a/lib/public/Log/IFileBased.php
+++ b/lib/public/Log/IFileBased.php
@@ -23,8 +23,21 @@
namespace OCP\Log;
+/**
+ * Interface IFileBased
+ *
+ * @package OCP\Log
+ *
+ * @since 14.0.0
+ */
interface IFileBased {
- public function getLogFilePath();
+ /**
+ * @since 14.0.0
+ */
+ public function getLogFilePath():string;
- public function getEntries($limit=50, $offset=0);
+ /**
+ * @since 14.0.0
+ */
+ public function getEntries(int $limit=50, int $offset=0): array;
}