Docs: Correct `@access` entry for `::load()` in `WP_Image_Editor`, `WP_Image_Editor_GD`, and `WP_Image_Editor_Imagick`.
Props upadalavipul. Fixes #41423. Built from https://develop.svn.wordpress.org/trunk@41125 git-svn-id: http://core.svn.wordpress.org/trunk@40965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bed4804424
commit
8c55e79bef
|
@ -84,7 +84,7 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
|
||||||
* Loads image from $this->file into new GD Resource.
|
* Loads image from $this->file into new GD Resource.
|
||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
* @access protected
|
* @access public
|
||||||
*
|
*
|
||||||
* @return bool|WP_Error True if loaded successfully; WP_Error on failure.
|
* @return bool|WP_Error True if loaded successfully; WP_Error on failure.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -126,7 +126,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
||||||
* Loads image from $this->file into new Imagick Object.
|
* Loads image from $this->file into new Imagick Object.
|
||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
* @access protected
|
* @access public
|
||||||
*
|
*
|
||||||
* @return true|WP_Error True if loaded; WP_Error on failure.
|
* @return true|WP_Error True if loaded; WP_Error on failure.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -66,7 +66,7 @@ abstract class WP_Image_Editor {
|
||||||
* Loads image from $this->file into editor.
|
* Loads image from $this->file into editor.
|
||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
* @access protected
|
* @access public
|
||||||
* @abstract
|
* @abstract
|
||||||
*
|
*
|
||||||
* @return bool|WP_Error True if loaded; WP_Error on failure.
|
* @return bool|WP_Error True if loaded; WP_Error on failure.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9-alpha-41124';
|
$wp_version = '4.9-alpha-41125';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue