function Notifysend::notifyAllFine
Tell the user that all is fine and no error/warning has been found.
Return value
void
1 call to Notifysend::notifyAllFine()
- Notifysend::generate in vendor/
squizlabs/ php_codesniffer/ src/ Reports/ Notifysend.php - Generates a summary of errors and warnings for each file processed.
File
-
vendor/
squizlabs/ php_codesniffer/ src/ Reports/ Notifysend.php, line 194
Class
Namespace
PHP_CodeSniffer\ReportsCode
protected function notifyAllFine() {
$cmd = $this->getBasicCommand();
$cmd .= ' -i info';
$cmd .= ' "PHP CodeSniffer: Ok"';
$cmd .= ' "All fine"';
exec($cmd);
}