Make WordPress Core


Ignore:
Timestamp:
02/16/2024 09:45:18 PM (11 months ago)
Author:
johnbillion
Message:

Docs: Various improvements and corrections to inline documentation.

See #59651

File:
1 edited

Legend:

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

    r57501 r57644  
    612612     * @param string|array $args Optional. Override the defaults.
    613613     * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'.
    614      *                        A WP_Error instance upon error.
     614     *                        A WP_Error instance upon error. See WP_Http::response() for details.
    615615     */
    616616    public function post( $url, $args = array() ) {
     
    630630     * @param string|array $args Optional. Override the defaults.
    631631     * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'.
    632      *                        A WP_Error instance upon error.
     632     *                        A WP_Error instance upon error. See WP_Http::response() for details.
    633633     */
    634634    public function get( $url, $args = array() ) {
     
    648648     * @param string|array $args Optional. Override the defaults.
    649649     * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'.
    650      *                        A WP_Error instance upon error.
     650     *                        A WP_Error instance upon error. See WP_Http::response() for details.
    651651     */
    652652    public function head( $url, $args = array() ) {
Note: See TracChangeset for help on using the changeset viewer.