@@ -6,11 +6,23 @@ |
||
| 6 | 6 | |
| 7 | 7 | interface ElementInterface |
| 8 | 8 | { |
| 9 | + /** |
|
| 10 | + * @return string |
|
| 11 | + */ |
|
| 9 | 12 | public function getTitle(); |
| 10 | 13 | |
| 14 | + /** |
|
| 15 | + * @return string |
|
| 16 | + */ |
|
| 11 | 17 | public function getBody(Context $context); |
| 12 | 18 | |
| 19 | + /** |
|
| 20 | + * @return integer |
|
| 21 | + */ |
|
| 13 | 22 | public function getOrder(); |
| 14 | 23 | |
| 24 | + /** |
|
| 25 | + * @return boolean |
|
| 26 | + */ |
|
| 15 | 27 | public function isRelevantTo(Context $context); |
| 16 | 28 | } |