From f66e753d46259bb7dd75258afd9c0229dd72e60d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 12 Oct 2015 16:26:22 +0000 Subject: [PATCH] Docs: Fix hash notation syntax for the `$sizes[ $size ]` section in the DocBlock for `WP_Image_Editor_Imagick::multi_resize()`. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@35062 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-image-editor-imagick.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/class-wp-image-editor-imagick.php b/src/wp-includes/class-wp-image-editor-imagick.php index f4d8f3b49f..4479afc7ab 100644 --- a/src/wp-includes/class-wp-image-editor-imagick.php +++ b/src/wp-includes/class-wp-image-editor-imagick.php @@ -277,9 +277,11 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { * maintain aspect ratio according to the provided dimension. * * @type array $size { - * @type int ['width'] Optional. Image width. - * @type int ['height'] Optional. Image height. - * @type bool $crop Optional. Whether to crop the image. Default false. + * Optional. Array of height, width values, and whether to crop. + * + * @type int $width Image width. + * @type int $height Image height. + * @type bool $crop Whether to crop the image. Default false. * } * } * @return array An array of resized images' metadata by size.