final public function Check::id in Security Review 8
Returns the identifier constructed using the namespace and title values.
Return value
string Unique identifier of the check.
1 call to Check::id()
- Check::__construct in src/
Check.php - Initializes the configuration storage and the settings handler.
File
- src/
Check.php, line 136
Class
- Check
- Defines a security check.
Namespace
Drupal\security_reviewCode
public final function id() {
return $this
->getMachineNamespace() . '-' . $this
->getMachineTitle();
}