Fix Notice in LegacyModule
Notice: Only variables should be passed by reference in src/LegacyModule.php on line 68
This commit is contained in:
parent
320c986e05
commit
972775e58e
1 changed files with 2 additions and 1 deletions
|
@ -65,7 +65,8 @@ class LegacyModule extends BaseModule
|
||||||
$function_name = static::$moduleName . '_' . $function_suffix;
|
$function_name = static::$moduleName . '_' . $function_suffix;
|
||||||
|
|
||||||
if (\function_exists($function_name)) {
|
if (\function_exists($function_name)) {
|
||||||
return $function_name(self::getApp());
|
$a = self::getApp();
|
||||||
|
return $function_name($a);
|
||||||
} else {
|
} else {
|
||||||
return parent::{$function_suffix}();
|
return parent::{$function_suffix}();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue