mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 03:09:21 +02:00
php7: Upgraded constructors in all msgparser classes
This commit is contained in:
parent
9eddd8a5d8
commit
2ac23f38f3
@ -56,9 +56,12 @@ class MsgParser_apache2 extends MsgParser {
|
||||
public $_ClassHelpArticle = "http://www.monitorware.com/Common/en/Articles/setup_mwagent_webserverlogging_phplogcon_mysql.php";
|
||||
|
||||
// Constructor
|
||||
public function MsgParser_apache2() {
|
||||
public function __construct () {
|
||||
return; // Nothing
|
||||
}
|
||||
public function MsgParser_apache2() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* ParseLine
|
||||
|
@ -56,9 +56,12 @@ class MsgParser_apache2common extends MsgParser {
|
||||
public $_ClassHelpArticle = "http://www.monitorware.com/Common/en/Articles/setup_mwagent_webserverlogging_phplogcon_mysql.php";
|
||||
|
||||
// Constructor
|
||||
public function MsgParser_apache2common() {
|
||||
public function __construct () {
|
||||
return; // Nothing
|
||||
}
|
||||
public function MsgParser_apache2common() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* ParseLine
|
||||
|
@ -54,9 +54,12 @@ class MsgParser_eventlog extends MsgParser {
|
||||
public $_ClassHelpArticle = "http://www.monitorware.com/en/Articles/";
|
||||
|
||||
// Constructor
|
||||
public function MsgParser_eventlog() {
|
||||
public function __construct () {
|
||||
return; // Nothing
|
||||
}
|
||||
public function MsgParser_eventlog() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* ParseLine
|
||||
|
@ -54,9 +54,12 @@ class MsgParser_iis extends MsgParser {
|
||||
public $_ClassHelpArticle = "http://www.monitorware.com/en/Articles/";
|
||||
|
||||
// Constructor
|
||||
public function MsgParser_iis() {
|
||||
public function __construct () {
|
||||
return; // Nothing
|
||||
}
|
||||
public function MsgParser_iis() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* ParseLine
|
||||
|
@ -54,12 +54,13 @@ class MsgParser_wireless extends MsgParser {
|
||||
);
|
||||
|
||||
// Constructor
|
||||
public function MsgParser_wireless() {
|
||||
|
||||
// TODO AUTOMATICALLY PERFORM FIELD INSERTS!
|
||||
|
||||
public function __construct () {
|
||||
// TODO AUTOMATICALLY PERFORM FIELD INSERTS!
|
||||
return; // Nothing
|
||||
}
|
||||
public function MsgParser_wireless() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* ParseLine
|
||||
|
Loading…
x
Reference in New Issue
Block a user