Browse Source

Added partial php documentation to the Log class

Tobias Reich 8 years ago
parent
commit
9a1e51c8bd
1 changed files with 9 additions and 0 deletions
  1. 9 0
      php/Modules/Log.php

+ 9 - 0
php/Modules/Log.php

@@ -4,18 +4,27 @@ namespace Lychee\Modules;
 
 final class Log {
 
+	/**
+	 * @return boolean Returns true when successful.
+	 */
 	public static function notice($connection, $function, $line, $text = '') {
 
 		return Log::text($connection, 'notice', $function, $line, $text);
 
 	}
 
+	/**
+	 * @return boolean Returns true when successful.
+	 */
 	public static function error($connection, $function, $line, $text = '') {
 
 		return Log::text($connection, 'error', $function, $line, $text);
 
 	}
 
+	/**
+	 * @return boolean Returns true when successful.
+	 */
 	private static function text($connection, $type, $function, $line, $text = '') {
 
 		// Check dependencies