function IntegrityViolation::setUuid

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;
}