| 1 | <?php |
||
| 21 | class YamlType implements TypeInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | * |
||
| 26 | * value: | |
||
| 27 | user_registration: |
||
| 28 | subject: "User Registration" |
||
| 29 | template: "@PhpMobCms/tpls/email/registration.html.twig" |
||
| 30 | verification_token: |
||
| 31 | subject: "User Verification" |
||
| 32 | template: "@PhpMobCms/tpls/email/verification.html.twig" |
||
| 33 | */ |
||
| 34 | public static function getName() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param mixed $value |
||
| 41 | * |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function getter($value) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param mixed $value |
||
| 51 | * |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function setter($value) |
||
| 58 | } |
||
| 59 |