You are here

public function InputFormats::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/InputFormats.php, line 35

Class

InputFormats
Checks for vulnerabilities related to input formats.

Namespace

Drupal\security_review\Checks

Code

public function getMachineTitle() {
  return 'input_formats';
}