value = $val; return $this; } public function &getValue() { return $this->value; } /** @return static */ public function setStatic(bool $state = true): self { $this->static = $state; return $this; } public function isStatic(): bool { return $this->static; } /** @return static */ public function setType(?string $val): self { $this->type = $val; return $this; } public function getType(): ?string { return $this->type; } /** @return static */ public function setNullable(bool $state = true): self { $this->nullable = $state; return $this; } public function isNullable(): bool { return $this->nullable; } /** @return static */ public function setInitialized(bool $state = true): self { $this->initialized = $state; return $this; } public function isInitialized(): bool { return $this->initialized; } }