*/ public $options; public function __construct( string $name, string $type, bool $nullable = false, ?array $options = null ) { $this->name = $name; $this->type = $type; $this->nullable = $nullable; $this->options = $options; } }