mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
28 lines
516 B
PHP
28 lines
516 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
class SimpleXMLIterator
|
|
{
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return SimpleXMLElement|null */
|
|
public function current() {}
|
|
|
|
/** @return string|false */
|
|
public function key() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
|
|
/** @return bool */
|
|
public function hasChildren() {}
|
|
|
|
/** @return SimpleXMLIterator|null */
|
|
public function getChildren() {}
|
|
}
|