Doctrine\OrientDB\Query\Command\OClass\Alter::__construct PHP Метод

__construct() публичный Метод

Sets the $class to alter, setting the $attribute to its new $value.
public __construct ( string $class, string $attribute, string $value )
$class string
$attribute string
$value string
    public function __construct($class, $attribute, $value)
    {
        parent::__construct($class);
        $this->setToken('Attribute', $attribute);
        $this->setToken('Value', $value);
    }