Page MenuHomec4science

HeraldCoreStateReasons.php
No OneTemporary

File Metadata

Created
Fri, Nov 22, 15:15

HeraldCoreStateReasons.php

<?php
final class HeraldCoreStateReasons
extends HeraldStateReasons {
const REASON_SILENT = 'core.silent';
public function explainReason($reason) {
$reasons = array(
self::REASON_SILENT => pht(
'This change applied silently, so mail and other notifications '.
'will not be sent.'),
);
return idx($reasons, $reason);
}
}

Event Timeline