`WP_Image_Editor_GD` and `WP_Image_Editor_Imagick` should specify type in a doc block for the `$image` property, instead of inferring `bool` and `null`.
See #30224. Built from https://develop.svn.wordpress.org/trunk@30180 git-svn-id: http://core.svn.wordpress.org/trunk@30180 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a887301869
commit
e02c724249
|
@ -15,8 +15,10 @@
|
|||
* @uses WP_Image_Editor Extends class
|
||||
*/
|
||||
class WP_Image_Editor_GD extends WP_Image_Editor {
|
||||
|
||||
protected $image = false; // GD Resource
|
||||
/**
|
||||
* @var resource
|
||||
*/
|
||||
protected $image; // GD Resource
|
||||
|
||||
public function __destruct() {
|
||||
if ( $this->image ) {
|
||||
|
|
|
@ -15,8 +15,10 @@
|
|||
* @uses WP_Image_Editor Extends class
|
||||
*/
|
||||
class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
||||
|
||||
protected $image = null; // Imagick Object
|
||||
/**
|
||||
* @var Imagick
|
||||
*/
|
||||
protected $image; // Imagick Object
|
||||
|
||||
public function __destruct() {
|
||||
if ( $this->image instanceof Imagick ) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.1-alpha-30179';
|
||||
$wp_version = '4.1-alpha-30180';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue