Completed
Push — simpler-test-run ( 0ad637...b3cd44 )
by Sam
11:48
created
Forms/DatetimeField.php 2 patches
Doc Comments   +20 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,6 +69,10 @@  discard block
 block discarded – undo
69 69
 	 */
70 70
 	protected $config;
71 71
 
72
+	/**
73
+	 * @param string $name
74
+	 * @param string $title
75
+	 */
72 76
 	public function __construct($name, $title = null, $value = ""){
73 77
 		$this->config = $this->config()->default_config;
74 78
 
@@ -79,6 +83,9 @@  discard block
 block discarded – undo
79 83
 		parent::__construct($name, $title, $value);
80 84
 	}
81 85
 
86
+	/**
87
+	 * @param Form $form
88
+	 */
82 89
 	public function setForm($form) {
83 90
 		parent::setForm($form);
84 91
 
@@ -89,6 +96,9 @@  discard block
 block discarded – undo
89 96
 		return $this;
90 97
 	}
91 98
 
99
+	/**
100
+	 * @param string $name
101
+	 */
92 102
 	public function setName($name) {
93 103
 		parent::setName($name);
94 104
 
@@ -101,7 +111,7 @@  discard block
 block discarded – undo
101 111
 
102 112
 	/**
103 113
 	 * @param array $properties
104
-	 * @return string
114
+	 * @return \SilverStripe\ORM\FieldType\DBHTMLText
105 115
 	 */
106 116
 	public function FieldHolder($properties = array()) {
107 117
 		$config = array(
@@ -115,7 +125,7 @@  discard block
 block discarded – undo
115 125
 
116 126
 	/**
117 127
 	 * @param array $properties
118
-	 * @return string
128
+	 * @return \SilverStripe\ORM\FieldType\DBHTMLText
119 129
 	 */
120 130
 	public function Field($properties = array()) {
121 131
 		Requirements::css(FRAMEWORK_DIR . '/client/dist/styles/DatetimeField.css');
@@ -228,6 +238,9 @@  discard block
 block discarded – undo
228 238
 		return $this;
229 239
 	}
230 240
 
241
+	/**
242
+	 * @param boolean $bool
243
+	 */
231 244
 	public function setReadonly($bool) {
232 245
 		parent::setReadonly($bool);
233 246
 		$this->dateField->setReadonly($bool);
@@ -317,7 +330,7 @@  discard block
 block discarded – undo
317 330
 	 * to set field-specific config options.
318 331
 	 *
319 332
 	 * @param string $name
320
-	 * @param mixed $val
333
+	 * @param string $val
321 334
 	 * @return $this
322 335
 	 */
323 336
 	public function setConfig($name, $val) {
@@ -336,7 +349,7 @@  discard block
 block discarded – undo
336 349
 	 * to get field-specific config options.
337 350
 	 *
338 351
 	 * @param String $name Optional, returns the whole configuration array if empty
339
-	 * @return mixed
352
+	 * @return string
340 353
 	 */
341 354
 	public function getConfig($name = null) {
342 355
 		if($name) {
@@ -346,6 +359,9 @@  discard block
 block discarded – undo
346 359
 		}
347 360
 	}
348 361
 
362
+	/**
363
+	 * @param RequiredFields $validator
364
+	 */
349 365
 	public function validate($validator) {
350 366
 		$dateValid = $this->dateField->validate($validator);
351 367
 		$timeValid = $this->timeField->validate($validator);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use SilverStripe\ORM\SS_List;
8 8
 use SilverStripe\ORM\ArrayList;
9 9
 use SilverStripe\ORM\DataObjectInterface;
10
-use SilverStripe\View\Requirements;
11 10
 use InvalidArgumentException;
12 11
 
13 12
 /**
Please login to merge, or discard this patch.
Forms/FieldList.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
 		$this->sequentialSaveableSet = null;
80 80
 	}
81 81
 
82
+	/**
83
+	 * @param FormField[] $list
84
+	 */
82 85
 	protected function collateDataFields(&$list, $saveableOnly = false) {
83 86
 		foreach($this as $field) {
84 87
 			if($field instanceof CompositeField) {
@@ -175,7 +178,7 @@  discard block
 block discarded – undo
175 178
 	 * Removes a number of fields from a Tab/TabSet within this FieldList.
176 179
 	 *
177 180
 	 * @param string $tabName The name of the Tab or TabSet field
178
-	 * @param array $fields A list of fields, e.g. array('Name', 'Email')
181
+	 * @param string[] $fields A list of fields, e.g. array('Name', 'Email')
179 182
 	 */
180 183
 	public function removeFieldsFromTab($tabName, $fields) {
181 184
 		$this->flushFieldsCache();
@@ -568,7 +571,7 @@  discard block
 block discarded – undo
568 571
 	}
569 572
 
570 573
 	/**
571
-	 * @param $field
574
+	 * @param CompositeField $field
572 575
 	 * @return $this
573 576
 	 */
574 577
 	public function setContainerField($field) {
@@ -638,6 +641,7 @@  discard block
 block discarded – undo
638 641
 	 * the children collection. Doesn't work recursively.
639 642
 	 *
640 643
 	 * @param string|FormField
644
+	 * @param string $field
641 645
 	 * @return int Position in children collection (first position starts with 0).
642 646
 	 * Returns FALSE if the field can't be found.
643 647
 	 */
Please login to merge, or discard this patch.
Forms/FileField.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
 	/**
93 93
 	 * @param array $properties
94
-	 * @return string
94
+	 * @return \SilverStripe\ORM\FieldType\DBHTMLText
95 95
 	 */
96 96
 	public function Field($properties = array()) {
97 97
 		$properties = array_merge($properties, array(
@@ -259,7 +259,6 @@  discard block
 block discarded – undo
259 259
 	 * for each of these categories
260 260
 	 *
261 261
 	 * @param string $category Category name
262
-	 * @param string,... $categories Additional category names
263 262
 	 * @return $this
264 263
 	 */
265 264
 	public function setAllowedFileCategories($category) {
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 2 patches
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) {
@@ -1184,7 +1183,7 @@  discard block
 block discarded – undo
1184 1183
 	/**
1185 1184
 	 * @param FormTransformation $transformation
1186 1185
 	 *
1187
-	 * @return mixed
1186
+	 * @return FormField
1188 1187
 	 */
1189 1188
 	public function transform(FormTransformation $transformation) {
1190 1189
 		return $transformation->transform($this);
@@ -1287,7 +1286,7 @@  discard block
 block discarded – undo
1287 1286
 	 * This function is used by the template processor. If you refer to a field as a $ variable, it
1288 1287
 	 * will return the $Field value.
1289 1288
 	 *
1290
-	 * @return string
1289
+	 * @return DBHTMLText
1291 1290
 	 */
1292 1291
 	public function forTemplate() {
1293 1292
 		return $this->Field();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use SilverStripe\ORM\DataQuery;
6 6
 use SilverStripe\ORM\DB;
7
-use InvalidArgumentException;
8 7
 
9 8
 /**
10 9
  * Matches textual content with a LIKE '%keyword%' construct.
Please login to merge, or discard this patch.
Forms/GridField/GridField.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
 	 *
193 193
 	 * @todo refactor this into GridFieldComponent
194 194
 	 *
195
-	 * @param mixed $value
195
+	 * @param string $value
196 196
 	 * @param string|array $castingDefinition
197 197
 	 *
198 198
 	 * @return mixed
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use SilverStripe\ORM\SS_List;
8 8
 use SilverStripe\ORM\ArrayList;
9 9
 use SilverStripe\ORM\DataObjectInterface;
10
-use SilverStripe\View\Requirements;
11 10
 use InvalidArgumentException;
12 11
 
13 12
 /**
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.