Skip to content

Commit 3ab7c34

Browse files
committed
Remove redundant abstract tags from DocBlocks
1 parent 839c817 commit 3ab7c34

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/wp-includes/class-wp-image-editor.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ public static function supports_mime_type( $mime_type ) {
6666
* Loads image from $this->file into editor.
6767
*
6868
* @since 3.5.0
69-
* @abstract
7069
*
7170
* @return true|WP_Error True if loaded; WP_Error on failure.
7271
*/
@@ -77,7 +76,6 @@ abstract public function load();
7776
*
7877
* @since 3.5.0
7978
* @since 6.0.0 The `$filesize` value was added to the returned array.
80-
* @abstract
8179
*
8280
* @param string $destfilename Optional. Destination filename. Default null.
8381
* @param string $mime_type Optional. The mime-type. Default null.
@@ -102,7 +100,6 @@ abstract public function save( $destfilename = null, $mime_type = null );
102100
* maintain aspect ratio according to the provided dimension.
103101
*
104102
* @since 3.5.0
105-
* @abstract
106103
*
107104
* @param int|null $max_w Image width.
108105
* @param int|null $max_h Image height.
@@ -122,7 +119,6 @@ abstract public function resize( $max_w, $max_h, $crop = false );
122119
* Resize multiple images from a single source.
123120
*
124121
* @since 3.5.0
125-
* @abstract
126122
*
127123
* @param array $sizes {
128124
* An array of image size arrays. Default sizes are 'small', 'medium', 'large'.
@@ -141,7 +137,6 @@ abstract public function multi_resize( $sizes );
141137
* Crops Image.
142138
*
143139
* @since 3.5.0
144-
* @abstract
145140
*
146141
* @param int $src_x The start x position to crop from.
147142
* @param int $src_y The start y position to crop from.
@@ -158,7 +153,6 @@ abstract public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $d
158153
* Rotates current image counter-clockwise by $angle.
159154
*
160155
* @since 3.5.0
161-
* @abstract
162156
*
163157
* @param float $angle
164158
* @return true|WP_Error
@@ -169,7 +163,6 @@ abstract public function rotate( $angle );
169163
* Flips current image.
170164
*
171165
* @since 3.5.0
172-
* @abstract
173166
*
174167
* @param bool $horz Flip along Horizontal Axis
175168
* @param bool $vert Flip along Vertical Axis
@@ -181,7 +174,6 @@ abstract public function flip( $horz, $vert );
181174
* Streams current image to browser.
182175
*
183176
* @since 3.5.0
184-
* @abstract
185177
*
186178
* @param string $mime_type The mime type of the image.
187179
* @return true|WP_Error True on success, WP_Error object on failure.

0 commit comments

Comments
 (0)