fix: add missing return statement from deprecated 'for()' method (#49)

Follow-up PR from #46. Forgot to return from the deprecated method.

Reviewed-on: https://codeberg.org/vlw/php-mysql/pulls/49
This commit is contained in:
Victor Westerlund 2025-06-12 12:44:26 +02:00
parent 814070a52e
commit e062930c41

View file

@ -81,7 +81,7 @@
since: "3.5.7",
)]
public function for(string $table): self {
$this->from($table);
return $this->from($table);
}
// Create a WHERE statement from filters