| 1 | <?php |
||
| 8 | class WebHostReportEntryItemCollection implements \Iterator |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var int |
||
| 13 | */ |
||
| 14 | private $position = 0; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $entries = []; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * |
||
| 23 | */ |
||
| 24 | public function rewind() { |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function current() { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return int |
||
| 37 | */ |
||
| 38 | public function key() { |
||
| 41 | |||
| 42 | /** |
||
| 43 | * |
||
| 44 | */ |
||
| 45 | public function next() { |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param WebHostReportEntry $webHostReportEntry |
||
| 51 | * @return WebHostReportEntryCollection |
||
| 52 | */ |
||
| 53 | public function add($webHostReportEntry) { |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return bool |
||
| 61 | */ |
||
| 62 | public function valid() { |
||
| 65 | |||
| 66 | } |
||
| 67 |