Exemple #1
0
 /**
  * Creates filtered and grouped table representation.
  * @param  TableSelection  $refTable
  * @param  string  database table name
  * @param  string  joining column
  */
 public function __construct(TableSelection $refTable, $table, $column)
 {
     parent::__construct($table, $refTable->connection);
     $this->refTable = $refTable;
     $this->column = $column;
 }