You are here

public function FieldValidationRuleBase::setWeight in Field Validation 8

Sets the weight for this field_validation_rule.

Parameters

int $weight: The weight for this field_validation_rule.

Return value

$this

Overrides FieldValidationRuleInterface::setWeight

File

src/FieldValidationRuleBase.php, line 134

Class

FieldValidationRuleBase
Provides a base class for FieldValidationRule.

Namespace

Drupal\field_validation

Code

public function setWeight($weight) {
  $this->weight = $weight;
  return $this;
}