merge = true; return $this; } public function deepMerge(): static { $this->deepMerge = true; return $this->merge(); } public function shouldMerge(): bool { return $this->merge; } public function shouldDeepMerge(): bool { return $this->deepMerge; } }