Author: Tianfeng.Han
Inheritance: extends Swoole\Component\Observer, implements ArrayAccess
Example #1
0
 public function current()
 {
     $record = new Record(0, $this->db, $this->table, $this->primary);
     $record->put($this->_list[$this->_current_id]);
     $record->_current_id = $this->_list[$this->_current_id][$this->primary];
     return $record;
 }