]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing PHPDoc
authorThomas Müller <thomas.mueller@tmit.eu>
Sun, 4 Aug 2013 21:13:34 +0000 (23:13 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Sun, 4 Aug 2013 21:13:34 +0000 (23:13 +0200)
lib/log/owncloud.php

index e7246726d40b866d436f970d19cc9b0044917ecb..d16b9537a1658ca4f9835494e2d9265433dd0b41 100644 (file)
@@ -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) {