Merge pull request #130 from JustBlackBird/fix_var_export

Fix exception message in Context::_findVariableInContext
This commit is contained in:
fzerorubigd 2015-07-14 22:38:50 +04:30
commit a47d7e0fb2

View File

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