You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an object implements methods via the __call() magic method, v:call throws an exception that the method doesn't exist:
in /usr/www/users/oswalq/www.oswald.sh/public/typo3conf/ext/vhs/Classes/ViewHelpers/CallViewHelper.php line 75
1356849652
);
}
if (false === method_exists($object, $method)) {
throw new \RuntimeException(
'Method "' . $method . '" does not exist on object of type ' . get_class($object),
1356834755
);
}
If an object implements methods via the __call() magic method, v:call throws an exception that the method doesn't exist:
A solution would be to check for __call() too:
The text was updated successfully, but these errors were encountered: