php7: Upgraded constructors in all msgparser classes

This commit is contained in:
Andre Lorbach 2016-10-11 15:12:50 +02:00
parent 9eddd8a5d8
commit 2ac23f38f3
5 changed files with 21 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -54,12 +54,13 @@ class MsgParser_wireless extends MsgParser {
);
// Constructor
public function MsgParser_wireless() {
public function __construct () {
// TODO AUTOMATICALLY PERFORM FIELD INSERTS!
return; // Nothing
}
public function MsgParser_wireless() {
self::__construct();
}
/**
* ParseLine