Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/herald/state/HeraldCoreStateReasons.php
12256 views
1
<?php
2
3
final class HeraldCoreStateReasons
4
extends HeraldStateReasons {
5
6
const REASON_SILENT = 'core.silent';
7
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.'),
13
);
14
15
return idx($reasons, $reason);
16
}
17
18
}
19
20