Goal-Calibration/app/Text/Text.php

16 lines
219 B
PHP

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