23 lines
393 B
PHP
Raw Normal View History

2024-12-20 23:46:30 +01:00
<?php
namespace D3\KlicktippPhpClient\Entities;
use Doctrine\Common\Collections\ArrayCollection;
class Tag extends ArrayCollection
{
public function getId(): string
{
return $this->get('tagid');
}
public function getName(): string
{
return $this->get('name');
}
public function getText(): string
{
return $this->get('text');
}
}