Iterator.php 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. namespace Swoole\Connection;
  3. class Iterator implements \Iterator, \ArrayAccess, \Countable
  4. {
  5. public function __construct()
  6. {
  7. }
  8. public function __destruct()
  9. {
  10. }
  11. /**
  12. * @return mixed
  13. */
  14. public function rewind()
  15. {
  16. }
  17. /**
  18. * @return mixed
  19. */
  20. public function next()
  21. {
  22. }
  23. /**
  24. * @return mixed
  25. */
  26. public function current()
  27. {
  28. }
  29. /**
  30. * @return mixed
  31. */
  32. public function key()
  33. {
  34. }
  35. /**
  36. * @return mixed
  37. */
  38. public function valid()
  39. {
  40. }
  41. /**
  42. * @return mixed
  43. */
  44. public function count()
  45. {
  46. }
  47. /**
  48. * @return mixed
  49. */
  50. public function offsetExists($fd)
  51. {
  52. }
  53. /**
  54. * @return mixed
  55. */
  56. public function offsetGet($fd)
  57. {
  58. }
  59. /**
  60. * @return mixed
  61. */
  62. public function offsetSet($fd, $value)
  63. {
  64. }
  65. /**
  66. * @return mixed
  67. */
  68. public function offsetUnset($fd)
  69. {
  70. }
  71. }