Changeset View
Changeset View
Standalone View
Standalone View
src/applications/fund/application/PhabricatorFundApplication.php
| Show All 20 Lines | final class PhabricatorFundApplication extends PhabricatorApplication { | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xE2\x99\xA5"; | return "\xE2\x99\xA5"; | ||||
| } | } | ||||
| public function getApplicationGroup() { | public function getApplicationGroup() { | ||||
| return self::GROUP_UTILITIES; | return self::GROUP_UTILITIES; | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getRemarkupRules() { | public function getRemarkupRules() { | ||||
| return array( | return array( | ||||
| new FundInitiativeRemarkupRule(), | new FundInitiativeRemarkupRule(), | ||||
| ); | ); | ||||
| } | } | ||||
| Show All 28 Lines | |||||