meyfa/php-svg

View on GitHub
src/Nodes/Filters/SVGFEComposite.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace SVG\Nodes\Filters;

use SVG\Nodes\SVGNodeContainer;
use SVG\Rasterization\SVGRasterizer;

/**
 * Represents the SVG tag 'feComposite'.
 */
class SVGFEComposite extends SVGNodeContainer
{
    public const TAG_NAME = 'feComposite';

    public function __construct()
    {
        parent::__construct();
    }

    /**
     * @inheritdoc
     */
    public function rasterize(SVGRasterizer $rasterizer): void
    {
        // Nothing to rasterize.
    }
}