Completed
Pull Request — master (#71)
by John
02:15
created
code/controllers/BaseElementController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * Returns the current widget in scope rendered into its' holder
13 13
      *
14
-     * @return HTML
14
+     * @return HTMLText
15 15
      */
16 16
     public function WidgetHolder()
17 17
     {
Please login to merge, or discard this patch.
code/models/ElementVirtualLinked.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * Returns the current widget in scope rendered into its' holder
13 13
      *
14
-     * @return HTML
14
+     * @return HTMLText
15 15
      */
16 16
     public function WidgetHolder()
17 17
     {
Please login to merge, or discard this patch.
code/models/BaseElement.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,6 +191,7 @@  discard block
 block discarded – undo
191 191
      * Version viewer must only be added at if this is the final getCMSFields for a class.
192 192
      * in order to avoid having to rename all fields from eg Root.Main to Root.Current.Main
193 193
      * To do this we test if getCMSFields is from the current class
194
+     * @param string $className
194 195
      */
195 196
     public function isEndofLine($className)
196 197
     {
@@ -385,7 +386,7 @@  discard block
 block discarded – undo
385 386
      * Override the {@link Widget::forTemplate()} method so that holders are not rendered twice. The controller should
386 387
      * render with widget inside the
387 388
      *
388
-     * @return HTML
389
+     * @return HTMLText
389 390
      */
390 391
     public function forTemplate($holder = true)
391 392
     {
Please login to merge, or discard this patch.