1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/simplexml/sxe.stub.php
2019-09-25 10:34:21 +02:00

26 lines
473 B
PHP

<?php
class SimpleXMLIterator
{
/** @return void */
public function rewind() {}
/** @return bool */
public function valid() {}
/** @return ?SimpleXMLElement */
public function current() {}
/** @return string|false */
public function key() {}
/** @return void */
public function next() {}
/** @return bool */
public function hasChildren() {}
/** @return ?SimpleXMLIterator */
public function getChildren() {}
}