mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +01:00
Fix some PHP5 syntax errors
This commit is contained in:
parent
02ad9ded1e
commit
fd4bf4f38a
3 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@ class LSlog_email extends LSlog_handler {
|
|||
public function __toStringDetails() {
|
||||
return array_merge(
|
||||
array("recipient=".$this -> recipient),
|
||||
parent :: __toStringDetails(),
|
||||
parent :: __toStringDetails()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ class LSlog_file extends LSlog_handler {
|
|||
public function __toStringDetails() {
|
||||
return array_merge(
|
||||
array("path=".$this -> path),
|
||||
parent :: __toStringDetails(),
|
||||
parent :: __toStringDetails()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ class LSlog_syslog extends LSlog_handler {
|
|||
public function __toStringDetails() {
|
||||
return array_merge(
|
||||
array("priority=".$this -> priority),
|
||||
parent :: __toStringDetails(),
|
||||
parent :: __toStringDetails()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue