Explicit cast needed for now

This commit is contained in:
Marcus Boerger 2004-03-17 19:00:44 +00:00
parent f223262bcd
commit 8cdd2ed319

View File

@ -82,7 +82,7 @@ $students->add(new Student('00000014', 'Bob'));
$students->add(new Student('00000014', 'Foo'));
foreach ($students as $student) {
echo $student."\n";
echo $student->__tostring()."\n";
}
?>
===DONE===