meyfa/php-svg

View on GitHub
src/Nodes/Structures/SVGLinkGroup.php

Summary

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

namespace SVG\Nodes\Structures;

use SVG\Nodes\SVGNodeContainer;

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

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