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
This commit is contained in:
Drew Jaynes 2015-05-23 19:20:24 +00:00
parent a94c16f334
commit 7a7df47087
2 changed files with 5 additions and 2 deletions

View File

@ -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 ) {

View File

@ -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.