php-src/ext/simplexml/sxe.stub.php
2019-09-25 10:34:21 +02:00

25 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() {}
}