add subscription process endpoint

This commit is contained in:
2024-12-22 13:52:28 +01:00
parent b080b1a64c
commit 2e5dbcbea0
3 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace D3\KlicktippPhpClient\Entities;
use Doctrine\Common\Collections\ArrayCollection;
class Subscription extends ArrayCollection
{
public function getId(): string
{
return $this->get('id');
}
}