Esempio n. 1
0
 /**
  * Return whether the given query column name or alias is available in the given table
  *
  * @param   array|string    $table
  * @param   string          $column
  *
  * @return  bool
  */
 public function validateQueryColumnAssociation($table, $column)
 {
     return parent::validateQueryColumnAssociation($this->removeTablePrefix($this->clearTableAlias($table)), $column);
 }