mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
25 lines
473 B
PHP
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() {}
|
|
}
|