mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 08:12:40 +01:00
a5fb482a00
Summary: Cache refs in a single large index; rebuild the main index from them. Test Plan: {F32334} Reviewers: btrahan, vrana, chad Reviewed By: chad CC: aran Maniphest Tasks: T988 Differential Revision: https://secure.phabricator.com/D4900
9 lines
224 B
PHP
9 lines
224 B
PHP
<?php
|
|
|
|
abstract class DivinerRenderer {
|
|
|
|
abstract public function renderAtom(DivinerAtom $atom);
|
|
abstract public function renderAtomSummary(DivinerAtom $atom);
|
|
abstract public function renderAtomIndex(array $refs);
|
|
|
|
}
|