Completed
Pull Request — master (#6394)
by Ed
10:36
created
src/Forms/FileField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
 
239 239
     /**
240 240
      * @param array $properties
241
-     * @return string
241
+     * @return \SilverStripe\ORM\FieldType\DBHTMLText
242 242
      */
243 243
     public function Field($properties = array())
244 244
     {
Please login to merge, or discard this patch.
src/Forms/UploadReceiver.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,6 @@
 block discarded – undo
97 97
      * for each of these categories
98 98
      *
99 99
      * @param string $category Category name
100
-     * @param string,... $categories Additional category names
101 100
      * @return $this
102 101
      */
103 102
     public function setAllowedFileCategories($category)
Please login to merge, or discard this patch.
tests/php/Security/GroupTest/MemberForm.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -9,6 +9,10 @@
 block discarded – undo
9 9
 class MemberForm extends Form
10 10
 {
11 11
 
12
+	/**
13
+	 * @param \SilverStripe\Control\Controller $controller
14
+	 * @param string $name
15
+	 */
12 16
 	public function __construct($controller, $name)
13 17
 	{
14 18
 		$fields = TestMember::singleton()->getCMSFields();
Please login to merge, or discard this patch.