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\Text;
class TextContent
{
public function __construct(protected ?string $content = null)
}
public function setContent(?string $content): self
$this->content = $content;
return $this;
public function getContent(): ?string
return $this->content;