You are here

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

Class

Field
Checks for Javascript and PHP in submitted content.

Namespace

Drupal\security_review\Checks

Code

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