mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-14 08:43:40 +02:00
fix: MySQL->for() deprecation notice since version 3.5.7 (#47)
Wrong version referenced in the deprecation notice added in #46. Reviewed-on: https://codeberg.org/vlw/php-mysql/pulls/47
This commit is contained in:
parent
00cb7b3297
commit
03868ae784
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@
|
||||||
|
|
||||||
#[\Deprecated(
|
#[\Deprecated(
|
||||||
message: "use MySQL->from() instead",
|
message: "use MySQL->from() instead",
|
||||||
since: "2.1.5",
|
since: "3.5.7",
|
||||||
)]
|
)]
|
||||||
public function for(string $table): self {
|
public function for(string $table): self {
|
||||||
$this->from($table);
|
$this->from($table);
|
||||||
|
|
Loading…
Add table
Reference in a new issue