Skip to content

Commit

Permalink
Merge pull request #6045 from WoltLab/bugfix/image-metacode-upcast
Browse files Browse the repository at this point in the history
Rename `ImageMetacodeUpcast` to `AbstractImageMetacodeUpcast`
  • Loading branch information
Cyperghost authored Nov 11, 2024
2 parents 87e0305 + b445765 commit 3959efa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions com.woltlab.wcf/fileDelete.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2790,6 +2790,7 @@
<file>lib/system/html/input/node/HtmlInputNodeWoltlabColor.class.php</file>
<file>lib/system/html/input/node/HtmlInputNodeWoltlabMention.class.php</file>
<file>lib/system/html/input/node/IHtmlInputNodeProcessor.class.php</file>
<file>lib/system/html/metacode/upcast/ImageMetacodeUpcast.class.php</file>
<file>lib/system/html/node/HtmlNodeProcessor.class.php</file>
<file>lib/system/html/output/AmpHtmlOutputProcessor.class.php</file>
<file>lib/system/html/output/HtmlOutputNodeProcessor.class.php</file>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @since 6.1
*/
abstract class ImageMetacodeUpcast implements IMetacodeUpcast
abstract class AbstractImageMetacodeUpcast implements IMetacodeUpcast
{
/**
* Create the figure element for the image.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @since 6.1
*/
final class AttachMetacodeUpcast extends ImageMetacodeUpcast
final class AttachMetacodeUpcast extends AbstractImageMetacodeUpcast
{
#[\Override]
public function upcast(\DOMElement $element, array $attributes): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @since 6.1
*/
final class WsmMetacodeUpcast extends ImageMetacodeUpcast
final class WsmMetacodeUpcast extends AbstractImageMetacodeUpcast
{
#[\Override]
public function upcast(\DOMElement $element, array $attributes): void
Expand Down

0 comments on commit 3959efa

Please sign in to comment.