Files
archived-php-langspec/tests/interfaces/iterator.phpt
2015-01-07 22:42:29 +01:00

23 lines
460 B
PHP

--TEST--
PHP Spec test generated from ./interfaces/iterator.php
--FILE--
<?php
/*
+-------------------------------------------------------------+
| Copyright (c) 2014 Facebook, Inc. (http://www.facebook.com) |
+-------------------------------------------------------------+
*/
error_reporting(-1);
interface XIterator extends Traversable
{
function current();
function key();
function next();
function rewind();
function valid();
}
--EXPECT--