1 | <?php |
||
19 | class JsonType implements TypeInterface |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | * |
||
24 | * value: | |
||
25 | { |
||
26 | "user_registration": { |
||
27 | "subject": "User Registration", |
||
28 | "template": "@PhpMobCms/tpls/email/registration.html.twig" |
||
29 | }, |
||
30 | "verification_token": { |
||
31 | "subject": "User Verification", |
||
32 | "template": "@PhpMobCms/tpls/email/verification.html.twig" |
||
33 | } |
||
34 | } |
||
35 | */ |
||
36 | public static function getName() |
||
40 | |||
41 | /** |
||
42 | * @param mixed $value |
||
43 | * |
||
44 | * @return array |
||
45 | */ |
||
46 | public function getter($value) |
||
50 | |||
51 | /** |
||
52 | * @param mixed $value |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | public function setter($value) |
||
60 | } |
||
61 |