summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-04 23:13:34 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-04 23:13:34 +0200
commit33d78ab9c719ac0677651cfe76bf6a2aa3073241 (patch)
treeaf84c366a631c4849759f90a9f02e96cbf9cfa86 /lib
parentad952f215d18f3f06ac54118ee55eb4f2d5da777 (diff)
downloadnextcloud-server-33d78ab9c719ac0677651cfe76bf6a2aa3073241.tar.gz
nextcloud-server-33d78ab9c719ac0677651cfe76bf6a2aa3073241.zip
fixing PHPDoc
Diffstat (limited to 'lib')
-rw-r--r--lib/log/owncloud.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php
index e7246726d40..d16b9537a16 100644
--- a/lib/log/owncloud.php
+++ b/lib/log/owncloud.php
@@ -44,7 +44,7 @@ class OC_Log_Owncloud {
* write a message in the log
* @param string $app
* @param string $message
- * @param int level
+ * @param int $level
*/
public static function write($app, $message, $level) {
$minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR);
@@ -63,8 +63,8 @@ class OC_Log_Owncloud {
/**
* get entries from the log in reverse chronological order
- * @param int limit
- * @param int offset
+ * @param int $limit
+ * @param int $offset
* @return array
*/
public static function getEntries($limit=50, $offset=0) {