| 1 | <?php |
||
| 11 | class Tag |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var int |
||
| 15 | * |
||
| 16 | * @ORM\Column(name="id", type="integer") |
||
| 17 | * @ORM\Id |
||
| 18 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 19 | */ |
||
| 20 | private $id; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | * |
||
| 25 | * @ORM\Column(name="text", type="text", unique=true) |
||
| 26 | */ |
||
| 27 | private $text; |
||
| 28 | |||
| 29 | |||
| 30 | public function __construct(string $text) |
||
| 34 | |||
| 35 | public function getId(): int |
||
| 39 | |||
| 40 | public function getText(): string |
||
| 44 | } |
||
| 45 |