Changeset View
Changeset View
Standalone View
Standalone View
src/applications/badges/query/PhabricatorBadgesSearchEngine.php
| <?php | <?php | ||||
| final class PhabricatorBadgesSearchEngine | final class PhabricatorBadgesSearchEngine | ||||
| extends PhabricatorApplicationSearchEngine { | extends PhabricatorApplicationSearchEngine { | ||||
| public function getResultTypeDescription() { | public function getResultTypeDescription() { | ||||
| return pht('Badge'); | return pht('Badges'); | ||||
| } | } | ||||
| public function getApplicationClassName() { | public function getApplicationClassName() { | ||||
| return 'PhabricatorBadgesApplication'; | return 'PhabricatorBadgesApplication'; | ||||
| } | } | ||||
| public function newQuery() { | public function newQuery() { | ||||
| return new PhabricatorBadgesQuery(); | return new PhabricatorBadgesQuery(); | ||||
| ▲ Show 20 Lines • Show All 141 Lines • Show Last 20 Lines | |||||