Make WordPress Core


Ignore:
Timestamp:
05/25/2019 09:58:18 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Switch to the more common syntax for variadic function documentation.

See #37402

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/wp-db.php

    r45232 r45418  
    12871287     * @since 2.3.0
    12881288     *
    1289      * @param string      $query    Query statement with sprintf()-like placeholders
    1290      * @param array|mixed $args     The array of variables to substitute into the query's placeholders if being called with an array of arguments,
    1291      *                              or the first variable to substitute into the query's placeholders if being called with individual arguments.
    1292      * @param mixed       $args,... further variables to substitute into the query's placeholders if being called wih individual arguments.
     1289     * @param string      $query   Query statement with sprintf()-like placeholders
     1290     * @param array|mixed $args    The array of variables to substitute into the query's placeholders if being called with an array of arguments,
     1291     *                             or the first variable to substitute into the query's placeholders if being called with individual arguments.
     1292     * @param mixed       ...$args further variables to substitute into the query's placeholders if being called wih individual arguments.
    12931293     * @return string|void Sanitized query string, if there is a query to prepare.
    12941294     */
Note: See TracChangeset for help on using the changeset viewer.