1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/simplexml/sxe.stub.php
Máté Kocsis 4815be44db Generate function entries from stubs
Converts ext/pcntl, ext/simplexml, ext/snmp, ext/soap, ext/sqlite3.
Closes GH-5421
2020-04-20 10:38:41 +02:00

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