From 7a7df47087ef8a188a8dadb22d0831d3c4c30dd6 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 23 May 2015 19:20:24 +0000 Subject: [PATCH] Add a proper description comment for the `WP_Image_Editor_Imagick->$image` property. See [30180]. See #30224. Built from https://develop.svn.wordpress.org/trunk@32555 git-svn-id: http://core.svn.wordpress.org/trunk@32525 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-image-editor-imagick.php | 5 ++++- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-image-editor-imagick.php b/wp-includes/class-wp-image-editor-imagick.php index d50ad61b8e..82720c3977 100644 --- a/wp-includes/class-wp-image-editor-imagick.php +++ b/wp-includes/class-wp-image-editor-imagick.php @@ -16,9 +16,12 @@ */ class WP_Image_Editor_Imagick extends WP_Image_Editor { /** + * Imagick object. + * + * @access protected * @var Imagick */ - protected $image; // Imagick Object + protected $image; public function __destruct() { if ( $this->image instanceof Imagick ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 1974e0dea5..3ac3fc3f6a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32554'; +$wp_version = '4.3-alpha-32555'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.