min() public méthode

public min ( $table, $join, $column = null, $where = null )
Exemple #1
0
 /**
  * @param      $table
  * @param      $column
  * @param null $where
  * @return int
  */
 public function min($table, $column, $where = NULL)
 {
     if (empty($this->_reader)) {
         return $this->_writer->min($table, $column, $where);
     } else {
         return $this->_reader->min($table, $column, $where);
     }
 }