コード例 #1
0
ファイル: TableDecorator.php プロジェクト: cwd/TableBundle
 public function buildQuery(QueryConfigInterface $query, TableInterface $table)
 {
     $this->type->buildQuery($query, $table);
 }
コード例 #2
0
ファイル: TableBuilder.php プロジェクト: cwd/TableBundle
 public function getQueryConfig(TableInterface $table)
 {
     $queryConfig = new QueryConfig();
     $this->type->buildQuery($queryConfig, $table);
     return $queryConfig;
 }