2019-01-20 10:41:58 +01:00

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;
}
}