From: Marcus Boerger Date: Wed, 17 Mar 2004 19:14:15 +0000 (+0000) Subject: Go with implicit call X-Git-Tag: php-5.0.0RC1~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b967853eb34d3445b11b766f5477980a75352b98;p=php Go with implicit call --- diff --git a/ext/spl/tests/array_object_iterator.phpt b/ext/spl/tests/array_object_iterator.phpt index 5476d7d30c..9214a4c92b 100755 --- a/ext/spl/tests/array_object_iterator.phpt +++ b/ext/spl/tests/array_object_iterator.phpt @@ -82,7 +82,7 @@ $students->add(new Student('00000014', 'Bob')); $students->add(new Student('00000014', 'Foo')); foreach ($students as $student) { - echo $student->__tostring()."\n"; + echo $student, "\n"; } ?> ===DONE===