Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / infrastructure / customfield / datasource / PhabricatorCustomFieldApplicationSearchDatasource.php
blob7ba10e84ff5a3df60b9b436be873ed3a7b233812
1 <?php
3 final class PhabricatorCustomFieldApplicationSearchDatasource
4 extends PhabricatorTypeaheadProxyDatasource {
6 public function getComponentDatasources() {
7 $datasources = parent::getComponentDatasources();
9 $datasources[] =
10 new PhabricatorCustomFieldApplicationSearchAnyFunctionDatasource();
11 $datasources[] =
12 new PhabricatorCustomFieldApplicationSearchNoneFunctionDatasource();
14 return $datasources;