@@ -66,7 +66,6 @@ public static function supports_mime_type( $mime_type ) {
66
66
* Loads image from $this->file into editor.
67
67
*
68
68
* @since 3.5.0
69
- * @abstract
70
69
*
71
70
* @return true|WP_Error True if loaded; WP_Error on failure.
72
71
*/
@@ -77,7 +76,6 @@ abstract public function load();
77
76
*
78
77
* @since 3.5.0
79
78
* @since 6.0.0 The `$filesize` value was added to the returned array.
80
- * @abstract
81
79
*
82
80
* @param string $destfilename Optional. Destination filename. Default null.
83
81
* @param string $mime_type Optional. The mime-type. Default null.
@@ -102,7 +100,6 @@ abstract public function save( $destfilename = null, $mime_type = null );
102
100
* maintain aspect ratio according to the provided dimension.
103
101
*
104
102
* @since 3.5.0
105
- * @abstract
106
103
*
107
104
* @param int|null $max_w Image width.
108
105
* @param int|null $max_h Image height.
@@ -122,7 +119,6 @@ abstract public function resize( $max_w, $max_h, $crop = false );
122
119
* Resize multiple images from a single source.
123
120
*
124
121
* @since 3.5.0
125
- * @abstract
126
122
*
127
123
* @param array $sizes {
128
124
* An array of image size arrays. Default sizes are 'small', 'medium', 'large'.
@@ -141,7 +137,6 @@ abstract public function multi_resize( $sizes );
141
137
* Crops Image.
142
138
*
143
139
* @since 3.5.0
144
- * @abstract
145
140
*
146
141
* @param int $src_x The start x position to crop from.
147
142
* @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
158
153
* Rotates current image counter-clockwise by $angle.
159
154
*
160
155
* @since 3.5.0
161
- * @abstract
162
156
*
163
157
* @param float $angle
164
158
* @return true|WP_Error
@@ -169,7 +163,6 @@ abstract public function rotate( $angle );
169
163
* Flips current image.
170
164
*
171
165
* @since 3.5.0
172
- * @abstract
173
166
*
174
167
* @param bool $horz Flip along Horizontal Axis
175
168
* @param bool $vert Flip along Vertical Axis
@@ -181,7 +174,6 @@ abstract public function flip( $horz, $vert );
181
174
* Streams current image to browser.
182
175
*
183
176
* @since 3.5.0
184
- * @abstract
185
177
*
186
178
* @param string $mime_type The mime type of the image.
187
179
* @return true|WP_Error True on success, WP_Error object on failure.
0 commit comments