public function ReleaseNotes::successMessages in Production check & Production monitor 8
Returns the success messages for the check.
Return value
An associative array containing the following keys
- value: the value of the check
- description: the description of the check
Overrides ProdCheckInterface::successMessages
File
- src/
Plugin/ ProdCheck/ Server/ ReleaseNotes.php, line 46
Class
- ReleaseNotes
- Release notes check
Namespace
Drupal\prod_check\Plugin\ProdCheck\ServerCode
public function successMessages() {
return [
'value' => $this
->t('Release note & help files have been removed.'),
'description' => $this
->t('Status is OK for production use.'),
];
}