summaryrefslogtreecommitdiff
path: root/inc/events.php
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2015-05-15 19:03:34 +0200
committerChristopher Smith <chris@jalakai.co.uk>2015-05-15 19:03:34 +0200
commit26e22ab837dcabe137a0912fcd2f96d0c35f48c8 (patch)
tree656deee59b1c046f4ac1cebb4ed2bf7d82d72d48 /inc/events.php
parent11aaacbee50790c2d5a2c10e97307da213d6320d (diff)
downloadrpg-26e22ab837dcabe137a0912fcd2f96d0c35f48c8.tar.gz
rpg-26e22ab837dcabe137a0912fcd2f96d0c35f48c8.tar.bz2
Changes for PHP 7 Compatibility
- replace PHP4 style class constructor function names (based on class name) with php 5 __construct() Also remove some '&' reference operators used with objects And add some object type hints
Diffstat (limited to 'inc/events.php')
-rw-r--r--inc/events.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/events.php b/inc/events.php
index 256fb561e..35d55d0e3 100644
--- a/inc/events.php
+++ b/inc/events.php
@@ -31,7 +31,7 @@ class Doku_Event {
* @param string $name
* @param mixed $data
*/
- function Doku_Event($name, &$data) {
+ function __construct($name, &$data) {
$this->name = $name;
$this->data =& $data;
@@ -153,7 +153,7 @@ class Doku_Event_Handler {
* constructor, loads all action plugins and calls their register() method giving them
* an opportunity to register any hooks they require
*/
- function Doku_Event_Handler() {
+ function __construct() {
// load action plugins
/** @var DokuWiki_Action_Plugin $plugin */