コード例 #1
0
ファイル: Compare.php プロジェクト: phperf/xhprof-analytics
 public function topChildrenExpr()
 {
     $cols = RelatedStat::columns();
     $expr = RelatedStat::statement()->select('? AS symbol_id', $cols->childSymbolId)->where('? IN (?)', $cols->runId, $this->runIds)->where('? = ?', $cols->parentSymbolId, $this->symbolId)->groupBy($cols->childSymbolId);
     return $expr;
 }