3 final class PhrequentListController
extends PhrequentController
{
7 public function shouldAllowPublic() {
11 public function willProcessRequest(array $data) {
12 $this->queryKey
= idx($data, 'queryKey');
15 public function processRequest() {
16 $controller = id(new PhabricatorApplicationSearchController())
17 ->setQueryKey($this->queryKey
)
18 ->setSearchEngine(new PhrequentSearchEngine())
19 ->setNavigation($this->buildSideNavView());
21 return $this->delegateToController($controller);