1 | <?php |
||
20 | class ContactPage extends SymfonyPage implements ContactPageInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function getRouteName() |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function specifyEmail($email) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function specifyMessage($message) |
||
45 | |||
46 | public function send() |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | * |
||
54 | * @throws ElementNotFoundException |
||
55 | */ |
||
56 | public function getValidationMessageFor($element) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | protected function getDefinedElements() |
||
80 | } |
||
81 |