values)) { return '1=0'; // Always false } $placeholders = str_repeat('?,', count($this->values) - 1) . '?'; return "{$this->property} IN ({$placeholders})"; } public function getParameters(): array { return $this->values; } }