Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / meta / controller / PhabricatorApplicationsListController.php
blobcbbbbcf97f67e4f7975e640c18e0d32b39aadf69
1 <?php
3 final class PhabricatorApplicationsListController
4 extends PhabricatorApplicationsController {
6 public function shouldAllowPublic() {
7 return true;
10 public function handleRequest(AphrontRequest $request) {
11 $controller = id(new PhabricatorApplicationSearchController())
12 ->setQueryKey($request->getURIData('queryKey'))
13 ->setSearchEngine(new PhabricatorAppSearchEngine())
14 ->setNavigation($this->buildSideNavView());
16 return $this->delegateToController($controller);