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

getNewValue() public method

Get the new value of the changeset of the changed field.
public getNewValue ( string $field ) : mixed
$field string
return mixed
    public function getNewValue($field)
    {
        $this->assertValidField($field);
        return $this->entityChangeSet[$field][1];
    }