Add a proper description comment for the WP_Image_Editor_Imagick->$image property.

See [30180]. See #30224.


git-svn-id: https://develop.svn.wordpress.org/trunk@32555 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-05-23 19:19:49 +00:00
parent 3bf89080cf
commit b9b734b994

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