コード例 #1
0
ファイル: Query.php プロジェクト: RustiSub/CnetSync
 /**
  * Rewind the Iterator to the first element
  *
  * @return void Any returned value is ignored.
  */
 public function rewind()
 {
     if (!$this->result) {
         $this->loadItems();
     }
     $this->result->rewind();
 }