-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
I have a problem where license manager crashes with this error after installing it whenever I click on the plugin in the admin interface...
Error
Method name must be a string
highlighting this line below $ret = $object->$method();
/srv/users/chrisbrooks/apps/chrisbrooks/public/vendor/twig/twig/src/Template.php
if ($ignoreStrictCheck || !$this->env->isStrictVariables()) {
return;
}
throw new RuntimeError(sprintf('Neither the property "%1$s" nor one of the methods "%1$s()", "get%1$s()"/"is%1$s()" or "__call()" exist and have public access in class "%2$s".', $item, $class), -1, $this->getSourceContext());
}
if ($isDefinedTest) {
return true;
}
if ($this->env->hasExtension('\Twig\Extension\SandboxExtension')) {
$this->env->getExtension('\Twig\Extension\SandboxExtension')->checkMethodAllowed($object, $method);
}
// Some objects throw exceptions when they have __call, and the method we try
// to call is not supported. If ignoreStrictCheck is true, we should return null.
try {
if (!$arguments) {
$ret = $object->$method();
} else {
$ret = \call_user_func_array([$object, $method], $arguments);
}
} catch (\BadMethodCallException $e) {
if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
return;
}
throw $e;
}
// @deprecated in 1.28
if ($object instanceof \Twig_TemplateInterface) {
My environment:
Grav v1.7.18 - Admin v1.10.18
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels