fix: add missing return statement from 'for()'

This commit is contained in:
Victor Westerlund 2025-06-12 12:42:15 +02:00
parent 03868ae784
commit d21b571588
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -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