Make WordPress Core

Changeset 59406


Ignore:
Timestamp:
11/15/2024 09:09:32 PM (2 weeks ago)
Author:
SergeyBiryukov
Message:

Docs: Add missing commas in a few DocBlocks for various media functions.

Follow-up to [56416].

Props truptikanzariya.
Fixes #62433.

Location:
trunk/src/wp-includes
Files:
4 edited

Legend:

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

    r59145 r59406  
    183183     *     If an array, the image will be cropped using the array to specify the crop location:
    184184     *
    185      *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     185     *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    186186     *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    187187     * }
     
    215215     *     If an array, the image will be cropped using the array to specify the crop location:
    216216     *
    217      *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     217     *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    218218     *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    219219     * }
  • trunk/src/wp-includes/class-wp-image-editor-imagick.php

    r59315 r59406  
    347347     *     If an array, the image will be cropped using the array to specify the crop location:
    348348     *
    349      *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     349     *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    350350     *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    351351     * }
  • trunk/src/wp-includes/class-wp-image-editor.php

    r58849 r59406  
    112112     *     If an array, the image will be cropped using the array to specify the crop location:
    113113     *
    114      *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     114     *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    115115     *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    116116     * }
  • trunk/src/wp-includes/media.php

    r59346 r59406  
    289289 *     If an array, the image will be cropped using the array to specify the crop location:
    290290 *
    291  *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     291 *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    292292 *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    293293 * }
     
    351351 *     If an array, the image will be cropped using the array to specify the crop location:
    352352 *
    353  *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     353 *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    354354 *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    355355 * }
     
    531531 *     If an array, the image will be cropped using the array to specify the crop location:
    532532 *
    533  *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     533 *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    534534 *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    535535 * }
     
    685685 *     If an array, the image will be cropped using the array to specify the crop location:
    686686 *
    687  *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
     687 *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
    688688 *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
    689689 * }
Note: See TracChangeset for help on using the changeset viewer.