Make WordPress Core

Changeset 35061


Ignore:
Timestamp:
10/12/2015 04:25:24 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Fix hash notation syntax for the $sizes[ $size ] section in the DocBlock for WP_Image_Editor_GD::multi_resize().

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-image-editor-gd.php

    r33052 r35061  
    220220     *
    221221     *     @type array $size {
    222      *         @type int  ['width']  Optional. Image width.
    223      *         @type int  ['height'] Optional. Image height.
    224      *         @type bool ['crop']   Optional. Whether to crop the image. Default false.
     222     *         Optional. Array of height, width values, and whether to crop.
     223     *
     224     *         @type int  $width  Image width.
     225     *         @type int  $height Image height.
     226     *         @type bool $crop   Whether to crop the image. Default false.
    225227     *     }
    226228     * }
Note: See TracChangeset for help on using the changeset viewer.