init text entity

This commit is contained in:
Yisroel Baum 2026-02-19 20:59:25 +02:00
parent f18d958481
commit accfa9d04f
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

15
app/Text/Text.php Normal file
View file

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