mirror of
https://github.com/php/php-langspec.git
synced 2026-03-24 07:12:08 +01:00
23 lines
460 B
PHP
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--
|