mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
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:
parent
a94c16f334
commit
7a7df47087
@ -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 ) {
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user