Extends
lithium\core\ObjectSource
public function prev() {
if (!$this->_resource) {
return;
}
if ($this->_current == $this->_prev()) {
$this->_iterator--;
return $this->_current;
}
}
public function prev() {
if (!$this->_resource) {
return;
}
if ($this->_current == $this->_prev()) {
$this->_iterator--;
return $this->_current;
}
}