diff --git a/src/wp-includes/class-wpdb.php b/src/wp-includes/class-wpdb.php
index c6e6099c26..674c76f397 100644
|
a
|
b
|
class wpdb { |
| 1446 | 1446 | * |
| 1447 | 1447 | * @link https://www.php.net/sprintf Description of syntax. |
| 1448 | 1448 | * |
| 1449 | | * @param string $query Query statement with `sprintf()`-like placeholders. |
| 1450 | | * @param array|mixed $args The array of variables to substitute into the query's placeholders |
| 1451 | | * if being called with an array of arguments, or the first variable |
| 1452 | | * to substitute into the query's placeholders if being called with |
| 1453 | | * individual arguments. |
| 1454 | | * @param mixed ...$args Further variables to substitute into the query's placeholders |
| | 1449 | * @param string $query Query statement with `sprintf()` like placeholders. |
| | 1450 | * @param mixed ...$args Further variables to substitute into the query's placeholders |
| 1455 | 1451 | * if being called with individual arguments. |
| 1456 | 1452 | * @return string|void Sanitized query string, if there is a query to prepare. |
| 1457 | 1453 | */ |