mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
16 lines
349 B
PHP
16 lines
349 B
PHP
|
<?php
|
||
|
|
||
|
abstract class DiffusionExternalSymbolsSource {
|
||
|
|
||
|
/**
|
||
|
* @return list of PhabricatorRepositorySymbol
|
||
|
*/
|
||
|
abstract public function executeQuery(DiffusionExternalSymbolQuery $query);
|
||
|
|
||
|
protected function buildExternalSymbol() {
|
||
|
return id(new PhabricatorRepositorySymbol())
|
||
|
->setIsExternal(true)
|
||
|
->makeEphemeral();
|
||
|
}
|
||
|
}
|