Example #1
0
 /**
  * Returns current row
  * 
  * @return array
  */
 public function current()
 {
     if ($this->iterator->valid()) {
         return $this->iterator->current();
     }
 }
Example #2
0
 /**
  * Fetch current element
  *
  * @return FilesArray
  */
 public function current()
 {
     return $this->normalize(parent::current());
 }