mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-15 17:58:16 +02:00
22 lines
280 B
PHP
22 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Attribut;
|
|
|
|
trait TextAttribut
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $text;
|
|
|
|
public function getText(): string
|
|
{
|
|
return $this->text;
|
|
}
|
|
|
|
public function setText(string $text): void
|
|
{
|
|
$this->text = $text;
|
|
}
|
|
}
|