fixing PHPDoc

This commit is contained in:
Thomas Müller 2013-08-04 23:13:34 +02:00
parent ad952f215d
commit 33d78ab9c7
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ class OC_Log_Owncloud {
* write a message in the log * write a message in the log
* @param string $app * @param string $app
* @param string $message * @param string $message
* @param int level * @param int $level
*/ */
public static function write($app, $message, $level) { public static function write($app, $message, $level) {
$minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); $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 * get entries from the log in reverse chronological order
* @param int limit * @param int $limit
* @param int offset * @param int $offset
* @return array * @return array
*/ */
public static function getEntries($limit=50, $offset=0) { public static function getEntries($limit=50, $offset=0) {