Added partial php documentation to the Log class
This commit is contained in:
parent
e9accae2a7
commit
9a1e51c8bd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user