You are here

public function FilePermissions::getNamespace in Security Review 8

Returns the namespace of the check.

Usually it's the same as the module's name.

Return value

string Human-readable namespace of the check.

Overrides Check::getNamespace

File

src/Checks/FilePermissions.php, line 20

Class

FilePermissions
Check that files aren't writeable by the server.

Namespace

Drupal\security_review\Checks

Code

public function getNamespace() {
  return 'Security Review';
}