123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Swoole\Table;
- class Row implements \ArrayAccess
- {
- public $key;
- public $value;
- /**
- * @return mixed
- */
- public function offsetExists($offset)
- {
- }
- /**
- * @return mixed
- */
- public function offsetGet($offset)
- {
- }
- /**
- * @return mixed
- */
- public function offsetSet($offset, $value)
- {
- }
- /**
- * @return mixed
- */
- public function offsetUnset($offset)
- {
- }
- public function __destruct()
- {
- }
- }
|