public function Check::evaluate in Security Review 8
Returns the evaluation page of a result.
Usually this is a list of the findings and an explanation.
Parameters
\Drupal\security_review\CheckResult $result: The check result to evaluate.
Return value
array The render array of the evaluation page.
13 methods override Check::evaluate()
- AdminPermissions::evaluate in src/
Checks/ AdminPermissions.php - Returns the evaluation page of a result.
- ErrorReporting::evaluate in src/
Checks/ ErrorReporting.php - Returns the evaluation page of a result.
- ExecutablePhp::evaluate in src/
Checks/ ExecutablePhp.php - Returns the evaluation page of a result.
- FailedLogins::evaluate in src/
Checks/ FailedLogins.php - Returns the evaluation page of a result.
- Field::evaluate in src/
Checks/ Field.php - Returns the evaluation page of a result.
File
- src/
Check.php, line 203
Class
- Check
- Defines a security check.
Namespace
Drupal\security_reviewCode
public function evaluate(CheckResult $result) {
return [];
}