name = $name; $this->type = $type; $this->flags = $flags; } public function getName() : string { return $this->name; } public function getType() : ?\PHPStan\Type\Type { return $this->type; } public function getFlags() : int { return $this->flags; } }