Completed
Pull Request — master (#6233)
by David
09:20
created
Forms/Form.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
 	 * The callback can opt out of handling specific responses by returning NULL,
534 534
 	 * in which case the default form behaviour will kick in.
535 535
 	 *
536
-	 * @param $callback
536
+	 * @param \Closure $callback
537 537
 	 * @return self
538 538
 	 */
539 539
 	public function setValidationResponseCallback($callback) {
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
 	/**
594 594
 	 * Fields can have action to, let's check if anyone of the responds to $funcname them
595 595
 	 *
596
-	 * @param SS_List|array $fields
596
+	 * @param FieldList $fields
597 597
 	 * @param callable $funcName
598 598
 	 * @return FormField
599 599
 	 */
@@ -734,6 +734,7 @@  discard block
 block discarded – undo
734 734
 	 * Set actions that are exempt from validation
735 735
 	 *
736 736
 	 * @param array
737
+	 * @param string[] $actions
737 738
 	 * @return $this
738 739
 	 */
739 740
 	public function setValidationExemptActions($actions) {
@@ -1131,7 +1132,7 @@  discard block
 block discarded – undo
1131 1132
 	 * If set to false (the default), then the form method is only used to construct the default
1132 1133
 	 * form.
1133 1134
 	 *
1134
-	 * @param $bool boolean
1135
+	 * @param boolean $bool boolean
1135 1136
 	 * @return $this
1136 1137
 	 */
1137 1138
 	public function setStrictFormMethodCheck($bool) {
Please login to merge, or discard this patch.
Forms/FormAction.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -89,6 +89,7 @@
 block discarded – undo
89 89
 	 * Determines if the field should render open or closed by default.
90 90
 	 * 
91 91
 	 * @param boolean
92
+	 * @param boolean $bool
92 93
 	 */
93 94
 	public function startClosed($bool) {
94 95
 		($bool) ? $this->addExtraClass('startClosed') : $this->removeExtraClass('startClosed');
Please login to merge, or discard this patch.
Forms/FormField.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -769,7 +769,6 @@  discard block
 block discarded – undo
769 769
 	 * Set the field value.
770 770
 	 *
771 771
 	 * @param mixed $value
772
-	 * @param null|array|DataObject $data {@see Form::loadDataFrom}
773 772
 	 * @return $this
774 773
 	 */
775 774
 	public function setValue($value) {
@@ -1188,7 +1187,7 @@  discard block
 block discarded – undo
1188 1187
 	/**
1189 1188
 	 * @param FormTransformation $transformation
1190 1189
 	 *
1191
-	 * @return mixed
1190
+	 * @return FormField
1192 1191
 	 */
1193 1192
 	public function transform(FormTransformation $transformation) {
1194 1193
 		return $transformation->transform($this);
@@ -1291,7 +1290,7 @@  discard block
 block discarded – undo
1291 1290
 	 * This function is used by the template processor. If you refer to a field as a $ variable, it
1292 1291
 	 * will return the $Field value.
1293 1292
 	 *
1294
-	 * @return string
1293
+	 * @return DBHTMLText
1295 1294
 	 */
1296 1295
 	public function forTemplate() {
1297 1296
 		return $this->Field();
Please login to merge, or discard this patch.
Forms/GridField/GridField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
 	 *
201 201
 	 * @todo refactor this into GridFieldComponent
202 202
 	 *
203
-	 * @param mixed $value
203
+	 * @param string $value
204 204
 	 * @param string|array $castingDefinition
205 205
 	 *
206 206
 	 * @return mixed
Please login to merge, or discard this patch.
Forms/GridField/GridFieldAddExistingAutocompleter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	/**
143 143
 	 *
144 144
 	 * @param GridField $gridField
145
-	 * @return array
145
+	 * @return string[]
146 146
 	 */
147 147
 	public function getActions($gridField) {
148 148
 		return array('addto', 'find');
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 	}
274 274
 
275 275
 	/**
276
-	 * @param array $fields
276
+	 * @param string[] $fields
277 277
 	 * @return $this
278 278
 	 */
279 279
 	public function setSearchFields($fields) {
Please login to merge, or discard this patch.
Forms/GridField/GridFieldDetailForm_ItemRequest.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -92,6 +92,9 @@  discard block
 block discarded – undo
92 92
 		parent::__construct();
93 93
 	}
94 94
 
95
+	/**
96
+	 * @param string $action
97
+	 */
95 98
 	public function Link($action = null)
96 99
 	{
97 100
 		return Controller::join_links($this->gridField->Link('item'),
@@ -339,6 +342,9 @@  discard block
 block discarded – undo
339 342
 		return $c;
340 343
 	}
341 344
 
345
+	/**
346
+	 * @return string
347
+	 */
342 348
 	protected function getBackLink()
343 349
 	{
344 350
 		// TODO Coupling with CMS
@@ -446,6 +452,9 @@  discard block
 block discarded – undo
446 452
 		}
447 453
 	}
448 454
 
455
+	/**
456
+	 * @param integer $errorCode
457
+	 */
449 458
 	public function httpError($errorCode, $errorMessage = null)
450 459
 	{
451 460
 		$controller = $this->getToplevelController();
Please login to merge, or discard this patch.
Forms/GridField/GridFieldEditButton.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	 * Which columns are handled by this component
61 61
 	 *
62 62
 	 * @param GridField $gridField
63
-	 * @return array
63
+	 * @return string[]
64 64
 	 */
65 65
 	public function getColumnsHandled($gridField) {
66 66
 		return array('Actions');
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	 * @param GridField $gridField
81 81
 	 * @param DataObject $record
82 82
 	 * @param string $columnName
83
-	 * @return string The HTML for the column
83
+	 * @return \SilverStripe\ORM\FieldType\DBHTMLText The HTML for the column
84 84
 	 */
85 85
 	public function getColumnContent($gridField, $record, $columnName) {
86 86
 		// No permission checks, handled through GridFieldDetailForm,
Please login to merge, or discard this patch.
Forms/GridField/GridFieldExportButton.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	 * export is an action button
73 73
 	 *
74 74
 	 * @param GridField $gridField
75
-	 * @return array
75
+	 * @return string[]
76 76
 	 */
77 77
 	public function getActions($gridField) {
78 78
 		return array('export');
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	 * Generate export fields for CSV.
142 142
 	 *
143 143
 	 * @param GridField $gridField
144
-	 * @return array
144
+	 * @return string
145 145
 	 */
146 146
 	public function generateExportFileData($gridField) {
147 147
 		$csvColumns = $this->getExportColumnsForGridField($gridField);
Please login to merge, or discard this patch.
Forms/GridField/GridFieldPrintButton.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 	/**
130 130
 	 *
131 131
 	 * @param GridField $gridField
132
-	 * @return array
132
+	 * @return string[]
133 133
 	 */
134 134
 	public function getActions($gridField) {
135 135
 		return array('addto');
Please login to merge, or discard this patch.