From 3bf89080cfe723ba8054ce5b6728c5b82ac25ca8 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 23 May 2015 19:09:58 +0000 Subject: [PATCH] Add a proper description comment for the `WP_Image_Editor_GD->$image` property. See [30180]. See #30224. git-svn-id: https://develop.svn.wordpress.org/trunk@32554 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-image-editor-gd.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-image-editor-gd.php b/src/wp-includes/class-wp-image-editor-gd.php index 616874be4a..9f526efe4c 100644 --- a/src/wp-includes/class-wp-image-editor-gd.php +++ b/src/wp-includes/class-wp-image-editor-gd.php @@ -16,9 +16,12 @@ */ class WP_Image_Editor_GD extends WP_Image_Editor { /** + * GD Resource. + * + * @access protected * @var resource */ - protected $image; // GD Resource + protected $image; public function __destruct() { if ( $this->image ) {