summaryrefslogtreecommitdiff
path: root/ext/simplexml/sxe.stub.php
blob: 98ea3327ba7bbe000e465c396ec73766b68edac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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() {}
}