Page MenuHomec4science

PhabricatorCustomFieldApplicationSearchDatasource.php
No OneTemporary

File Metadata

Created
Sun, Aug 3, 09:06

PhabricatorCustomFieldApplicationSearchDatasource.php

<?php
final class PhabricatorCustomFieldApplicationSearchDatasource
extends PhabricatorTypeaheadProxyDatasource {
public function getComponentDatasources() {
$datasources = parent::getComponentDatasources();
$datasources[] =
new PhabricatorCustomFieldApplicationSearchAnyFunctionDatasource();
$datasources[] =
new PhabricatorCustomFieldApplicationSearchNoneFunctionDatasource();
return $datasources;
}
}

Event Timeline