1 | <?php |
||
5 | class AppleRegistration extends AbstractRegistration |
||
6 | { |
||
7 | protected $expiry; |
||
8 | |||
9 | /** |
||
10 | * {@inheritdoc} |
||
11 | */ |
||
12 | public function getRegistrationDescriptionTag() |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function getTemplateRegistrationDescriptionTag() |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function getTokenTag() |
||
32 | |||
33 | /** |
||
34 | * Sets the expiry for the template. |
||
35 | * |
||
36 | * @param string $expiry |
||
37 | * |
||
38 | * @return AppleRegistration this object |
||
39 | */ |
||
40 | public function setExpiry($expiry) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | protected function appendAdditionalNode($descriptionNode) |
||
56 | } |
||
57 |