meyfa/php-svg

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

Summary

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

namespace SVG\Nodes\Structures;

use SVG\Nodes\SVGNodeContainer;

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

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