1 | <?php |
||
7 | class Metadata implements MetadataInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string|null |
||
11 | */ |
||
12 | protected $id; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $key; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $value; |
||
23 | |||
24 | /** |
||
25 | * @var SubscriptionInterface |
||
26 | */ |
||
27 | protected $subscription; |
||
28 | |||
29 | public function getId(): ?string |
||
33 | |||
34 | public function getKey(): ?string |
||
38 | |||
39 | public function setKey(?string $key): void |
||
43 | |||
44 | public function getValue(): ?string |
||
48 | |||
49 | public function setValue(?string $value): void |
||
53 | |||
54 | public function getSubscription(): ?SubscriptionInterface |
||
58 | |||
59 | public function setSubscription(?SubscriptionInterface $subscription): void |
||
63 | } |
||
64 |