Commit 4d235f9f by Alexander Makarov

Fixed exception message to match the one in Component

parent 7e16837b
......@@ -214,7 +214,7 @@ class Object
*/
public function __call($name, $params)
{
throw new UnknownMethodException('Unknown method: ' . get_class($this) . "::$name()");
throw new UnknownMethodException('Calling unknown method: ' . get_class($this) . "::$name()");
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment