type = $type; return $this; } public function table(string $table): static { $this->table = $table; return $this; } public function foreignKeyName(string $foreignKeyName): static { $this->foreignValueName = $foreignKeyName; return $this; } public function foreignValueName(string $foreignValueName): static { $this->foreignValueName = $foreignValueName; return $this; } }