Ivan - Backend - Fix captcha tests

This commit is contained in:
ivan 2016-08-30 15:41:35 -03:00
parent d1f1909cc3
commit 12cf0df27f
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class Mock {
}
public function __call($method, $arguments) {
if (isset($this->{$method}) && is_callable($this->{$method})) {
if (@isset($this->{$method}) && is_callable($this->{$method})) {
return call_user_func_array($this->{$method}, $arguments);
} else if (!self::__callStatic($method, $arguments)) {
throw new Exception("Fatal error: Call to undefined method stdObject::{$method}()");