Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/event.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ private static function reportEvent($severity = 0, $message = '')
/**
* Reports a debug event on the website.
*
* @param string $message Text witht the explanation of the event or action performed.
* @param string $message Text with the explanation of the event or action performed.
* @return bool Either true or false depending on the success of the operation.
*/
public static function reportDebugEvent($message = '')
Expand All @@ -516,7 +516,7 @@ public static function reportDebugEvent($message = '')
/**
* Reports a notice event on the website.
*
* @param string $message Text witht the explanation of the event or action performed.
* @param string $message Text with the explanation of the event or action performed.
* @return bool Either true or false depending on the success of the operation.
*/
public static function reportNoticeEvent($message = '')
Expand All @@ -527,7 +527,7 @@ public static function reportNoticeEvent($message = '')
/**
* Reports a info event on the website.
*
* @param string $message Text witht the explanation of the event or action performed.
* @param string $message Text with the explanation of the event or action performed.
* @return bool Either true or false depending on the success of the operation.
*/
public static function reportInfoEvent($message = '')
Expand All @@ -538,7 +538,7 @@ public static function reportInfoEvent($message = '')
/**
* Reports a warning event on the website.
*
* @param string $message Text witht the explanation of the event or action performed.
* @param string $message Text with the explanation of the event or action performed.
* @return bool Either true or false depending on the success of the operation.
*/
public static function reportWarningEvent($message = '')
Expand All @@ -549,7 +549,7 @@ public static function reportWarningEvent($message = '')
/**
* Reports a error event on the website.
*
* @param string $message Text witht the explanation of the event or action performed.
* @param string $message Text with the explanation of the event or action performed.
* @return bool Either true or false depending on the success of the operation.
*/
public static function reportErrorEvent($message = '')
Expand All @@ -560,7 +560,7 @@ public static function reportErrorEvent($message = '')
/**
* Reports a critical event on the website.
*
* @param string $message Text witht the explanation of the event or action performed.
* @param string $message Text with the explanation of the event or action performed.
* @return bool Either true or false depending on the success of the operation.
*/
public static function reportCriticalEvent($message = '')
Expand Down