Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / herald / state / HeraldCoreStateReasons.php
blob7a033ff51e4f17880bdd0fac4d31d09c14f0a953
1 <?php
3 final class HeraldCoreStateReasons
4 extends HeraldStateReasons {
6 const REASON_SILENT = 'core.silent';
8 public function explainReason($reason) {
9 $reasons = array(
10 self::REASON_SILENT => pht(
11 'This change applied silently, so mail and other notifications '.
12 'will not be sent.'),
15 return idx($reasons, $reason);