Row.php 525 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace Swoole\Table;
  3. class Row implements \ArrayAccess
  4. {
  5. public $key;
  6. public $value;
  7. /**
  8. * @return mixed
  9. */
  10. public function offsetExists($offset)
  11. {
  12. }
  13. /**
  14. * @return mixed
  15. */
  16. public function offsetGet($offset)
  17. {
  18. }
  19. /**
  20. * @return mixed
  21. */
  22. public function offsetSet($offset, $value)
  23. {
  24. }
  25. /**
  26. * @return mixed
  27. */
  28. public function offsetUnset($offset)
  29. {
  30. }
  31. public function __destruct()
  32. {
  33. }
  34. }