Completed
Push — master ( 1f3fa8...7d4b61 )
by Mike
03:08
created
src/Element/ElementInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -6,11 +6,23 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.