summaryrefslogtreecommitdiff
path: root/ext/spl/tests/iterator_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/iterator_003.phpt')
-rw-r--r--ext/spl/tests/iterator_003.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/tests/iterator_003.phpt b/ext/spl/tests/iterator_003.phpt
index 11d37b303b..f119661f57 100644
--- a/ext/spl/tests/iterator_003.phpt
+++ b/ext/spl/tests/iterator_003.phpt
@@ -18,7 +18,7 @@ class Student
{
return $this->id . ', ' . $this->name;
}
-
+
public function getId()
{
return $this->id;
@@ -34,7 +34,7 @@ class StudentIdFilter extends FilterIterator
FilterIterator::__construct($students->getIterator());
$this->id = $other->getId();
}
-
+
public function accept()
{
echo "ACCEPT ".$this->current()->getId()." == ".$this->id."\n";
@@ -45,19 +45,19 @@ class StudentIdFilter extends FilterIterator
class StudentList implements IteratorAggregate
{
private $students;
-
+
public function __construct()
{
$this->students = new ArrayObject(array());
}
-
+
public function add(Student $student)
{
if (!$this->contains($student)) {
$this->students[] = $student;
}
}
-
+
public function contains(Student $student)
{
foreach ($this->students as $s)
@@ -68,7 +68,7 @@ class StudentList implements IteratorAggregate
}
return false;
}
-
+
public function getIterator() {
return new CachingIterator($this->students->getIterator(), true);
}