. * */ namespace Vvveb\Controller\Search; use Vvveb\Controller\Base; class Index extends Base { function index() { $search = $this->request->get['search'] ?? ''; $type = $this->request->get['type'] ?? ''; $this->view->search = $search; $this->view->type = $type; } function autocomplete() { } }