You are here

public function IntegrityViolation::setUuid in Rules 8.3

Sets the UUID of the nested expression where this violation occurred.

Parameters

string $uuid: The UUID.

Return value

$this

Overrides IntegrityViolationInterface::setUuid

File

src/Engine/IntegrityViolation.php, line 66

Class

IntegrityViolation
Holds information about an integrity violation in a Rules expression.

Namespace

Drupal\rules\Engine

Code

public function setUuid($uuid) {
  $this->uuid = $uuid;
  return $this;
}