Doctrine\OXM\Event\PreUpdateEventArgs::setNewValue PHP Method

setNewValue() public method

Set the new value of this field.
public setNewValue ( string $field, mixed $value )
$field string
$value mixed
    public function setNewValue($field, $value)
    {
        $this->assertValidField($field);
        $this->entityChangeSet[$field][1] = $value;
    }