Skip to content
Snippets Groups Projects
Commit ae7bcdc7 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fix singleton pattern in ActionRouter

parent b16ddc6e
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ class ActionRouter {
protected $action;
/** @var ActionRouter */
protected $instance;
protected static $instance;
/** @var int transition counter */
protected $transitions = 0;
......@@ -46,11 +46,11 @@ class ActionRouter {
* @param bool $reinit
* @return ActionRouter
*/
public function getInstance($reinit = false) {
if(($this->instance === null) || $reinit) {
$this->instance = new ActionRouter();
public static function getInstance($reinit = false) {
if((self::$instance === null) || $reinit) {
self::$instance = new ActionRouter();
}
return $this->instance;
return self::$instance;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment