rhymix/tests/simpletest/test/support/spl_examples.php
2009-03-30 16:21:34 +00:00

15 lines
No EOL
397 B
PHP

<?php
// $Id: spl_examples.php 1262 2006-02-05 19:35:31Z lastcraft $
class IteratorImplementation implements Iterator {
function current() { }
function next() { }
function key() { }
function valid() { }
function rewind() { }
}
class IteratorAggregateImplementation implements IteratorAggregate {
function getIterator() { }
}
?>