You are here

public function FieldValidationRuleSet::getName in Field Validation 8

Returns the FieldValidationRuleSet.

Return value

string The name of the FieldValidationRuleSet.

Overrides FieldValidationRuleSetInterface::getName

File

src/Entity/FieldValidationRuleSet.php, line 175

Class

FieldValidationRuleSet
Defines a field validation rule set configuration entity.

Namespace

Drupal\field_validation\Entity

Code

public function getName() {
  return $this
    ->get('name');
}