Doctrine\OrientDB\Query\Command\Property\Alter::changing PHP Method

changing() public method

Sets the $attribute to change and its new $value.
public changing ( string $attribute, string $value ) : Alter
$attribute string
$value string
return Alter
    public function changing($attribute, $value)
    {
        $this->setToken('Attribute', $attribute);
        $this->setToken('Value', $value);
        return $this;
    }