public function FilePermissions::getMachineTitle in Security Review 8
Returns the machine name of the check.
Naming rules (if overridden):
- All characters should be lowerspace.
- Use characters only from the english alphabet.
- Don't use spaces (use "_" instead).
Return value
string ID of check.
Overrides Check::getMachineTitle
File
- src/
Checks/ FilePermissions.php, line 34
Class
- FilePermissions
- Check that files aren't writeable by the server.
Namespace
Drupal\security_review\ChecksCode
public function getMachineTitle() {
return 'file_perms';
}