SqlParser\Components\DataType::__construct PHP Метод

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

Constructor.
public __construct ( string $name = null, array $parameters = [], OptionsArray $options = null )
$name string The name of this data type.
$parameters array The parameters (size or possible values).
$options OptionsArray The options of this data type.
    public function __construct($name = null, array $parameters = array(), $options = null)
    {
        $this->name = $name;
        $this->parameters = $parameters;
        $this->options = $options;
    }