Page MenuHomec4science

PhabricatorCustomFieldApplicationSearchDatasource.php
No OneTemporary

File Metadata

Created
Fri, Jan 31, 06:15

PhabricatorCustomFieldApplicationSearchDatasource.php

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

Event Timeline