Example #1
0
 /**
  * 
  * @return Query
  */
 public static function select($cols = null)
 {
     return Query::select($cols ?: '*')->from(static::$_name)->setDbAdapter(static::$_dbAdapter)->setConsistency(static::$_readConsistency);
 }