Fix exception message in Context::_findVariableInContext

Fixes #129
This commit is contained in:
Dmitriy Simushev 2015-07-14 18:03:01 +00:00
parent 10dbe6442e
commit 912cc286fa

View File

@ -288,7 +288,7 @@ class Context
throw new \InvalidArgumentException(
sprintf(
'Can not find variable in context: "%s"',
var_export($variable, true)
$inside
)
);
}