for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PrinsFrank\PhpGeoSVG\Html\Elements;
use PrinsFrank\PhpGeoSVG\Html\Elements\Definition\ForeignElement;
class CircleElement extends Element implements ForeignElement
{
public function getTagName(): string
return 'circle';
}