1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2026-01-12 22:51:27 +03:00
Files
postfixadmin/tests/simpletest/test/support/spl_examples.php
2009-03-15 21:24:56 +00:00

15 lines
401 B
PHP

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