Skip to content
Snippets Groups Projects
Commit 617a9a9d authored by Laurent's avatar Laurent
Browse files

fix printing ObjectWrapper errors in PHP 7

parent 03db1d52
Branches
Tags
No related merge requests found
Pipeline #8539 passed with stage
in 50 seconds
......@@ -54,7 +54,7 @@ class Storm_Test_Mock extends StdClass {
protected function _argToSring($arg) {
return is_object($arg)
? get_class($arg)
: $arg;
: print_r($arg, true);
}
}
......
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