/**
* Method to add an entry to the log.
*
* @param LogEntry $entry The log entry object to add to the log.
*
* @return void
*
* @since 4.0.0
*/
public function addEntry(LogEntry $entry)
{
static::$logEntries[$this->group][] = $entry;
}