diff options
author | Marcus Boerger <helly@php.net> | 2004-03-17 19:14:15 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-17 19:14:15 +0000 |
commit | b967853eb34d3445b11b766f5477980a75352b98 (patch) | |
tree | 6f8885d1de3c1d587b72c98634597715022adcf8 | |
parent | 8cdd2ed31936bfff4395cf5bc75766b5b7b470dc (diff) | |
download | php-git-b967853eb34d3445b11b766f5477980a75352b98.tar.gz |
Go with implicit call
-rwxr-xr-x | ext/spl/tests/array_object_iterator.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
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=== |