123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace Swoole\Connection;
- class Iterator implements \Iterator, \ArrayAccess, \Countable
- {
- public function __construct()
- {
- }
- public function __destruct()
- {
- }
- /**
- * @return mixed
- */
- public function rewind()
- {
- }
- /**
- * @return mixed
- */
- public function next()
- {
- }
- /**
- * @return mixed
- */
- public function current()
- {
- }
- /**
- * @return mixed
- */
- public function key()
- {
- }
- /**
- * @return mixed
- */
- public function valid()
- {
- }
- /**
- * @return mixed
- */
- public function count()
- {
- }
- /**
- * @return mixed
- */
- public function offsetExists($fd)
- {
- }
- /**
- * @return mixed
- */
- public function offsetGet($fd)
- {
- }
- /**
- * @return mixed
- */
- public function offsetSet($fd, $value)
- {
- }
- /**
- * @return mixed
- */
- public function offsetUnset($fd)
- {
- }
- }
|