mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-14 08:43:40 +02:00
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:
parent
814070a52e
commit
e062930c41
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@
|
||||||
since: "3.5.7",
|
since: "3.5.7",
|
||||||
)]
|
)]
|
||||||
public function for(string $table): self {
|
public function for(string $table): self {
|
||||||
$this->from($table);
|
return $this->from($table);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a WHERE statement from filters
|
// Create a WHERE statement from filters
|
||||||
|
|
Loading…
Add table
Reference in a new issue