/** * Get all results of the filter * * @access public * @param string $column * @return array */ public function findAll($column = '') { if ($column !== '') { return $this->query->asc($column)->findAllByColumn($column); } return $this->query->findAll(); }
/** * Get all results of the filter * * @access public * @return array */ public function findAll() { return $this->query->asc(Task::TABLE . '.id')->findAll(); }