Goal-Calibration/app/Text/Text.php
2026-02-19 20:59:25 +02:00

15 lines
194 B
PHP

<?php
namespace App\Text;
class Text
{
public function __construct(
private string $name,
) {}
public function getName(): string
{
return $this->name;
}
}