Completed
Push — master ( 098653...40af14 )
by Daniel
10s
created
code/controller/WidgetController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      * Overloaded from {@link Widget->Content()} to allow for controller / form 
74 74
      * linking.
75 75
      * 
76
-     * @return string HTML
76
+     * @return HTMLText HTML
77 77
      */
78 78
     public function Content()
79 79
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * Overloaded from {@link Widget->WidgetHolder()} to allow for controller/ 
85 85
      * form linking.
86 86
      * 
87
-     * @return string HTML
87
+     * @return HTMLText HTML
88 88
      */
89 89
     public function WidgetHolder()
90 90
     {
Please login to merge, or discard this patch.
code/model/Widget.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Note: Overloaded in {@link WidgetController}.
88 88
      * 
89
-     * @return string HTML
89
+     * @return HTMLText HTML
90 90
      */
91 91
     public function WidgetHolder()
92 92
     {
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     /**
97 97
      * Default way to render widget in templates.
98
-     * @return string HTML
98
+     * @return HTMLText HTML
99 99
      */
100 100
     public function forTemplate($holder = true)
101 101
     {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      * 
115 115
      * Note: Overloaded in {@link WidgetController}.
116 116
      * 
117
-     * @return string HTML
117
+     * @return HTMLText HTML
118 118
      */
119 119
     public function Content()
120 120
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-     * @return string - HTML
179
+     * @return HTMLText - HTML
180 180
      */
181 181
     public function DescriptionSegment()
182 182
     {
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     /**
187 187
      * @see WidgetController::editablesegment()
188 188
      *
189
-     * @return string - HTML
189
+     * @return HTMLText - HTML
190 190
      */
191 191
     public function EditableSegment()
192 192
     {
Please login to merge, or discard this patch.
code/model/WidgetArea.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @return string - HTML
62
+     * @return HTMLText - HTML
63 63
      */
64 64
     public function forTemplate()
65 65
     {
Please login to merge, or discard this patch.
code/form/WidgetAreaEditor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @return string - HTML
62
+     * @return HTMLText - HTML
63 63
      */
64 64
     public function forTemplate()
65 65
     {
Please login to merge, or discard this patch.