Differential D10493 Diff 25253 src/applications/harbormaster/application/PhabricatorHarbormasterApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/application/PhabricatorHarbormasterApplication.php
| Show All 30 Lines | final class PhabricatorHarbormasterApplication extends PhabricatorApplication { | ||||
| } | } | ||||
| public function getEventListeners() { | public function getEventListeners() { | ||||
| return array( | return array( | ||||
| new HarbormasterUIEventListener(), | new HarbormasterUIEventListener(), | ||||
| ); | ); | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getRemarkupRules() { | public function getRemarkupRules() { | ||||
| return array( | return array( | ||||
| new HarbormasterRemarkupRule(), | new HarbormasterRemarkupRule(), | ||||
| ); | ); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines | |||||