Completed
Pull Request — master (#5771)
by Florian
12:04
created
ORM/Queries/SQLConditionalExpression.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -374,7 +374,6 @@  discard block
 block discarded – undo
374 374
 	 * @see SQLConditionalExpression::addWhere() for syntax examples
375 375
 	 *
376 376
 	 * @param mixed $where Predicate(s) to set, as escaped SQL statements or paramaterised queries
377
-	 * @param mixed $where,... Unlimited additional predicates
378 377
 	 * @return self Self reference
379 378
 	 */
380 379
 	public function setWhere($where) {
@@ -460,7 +459,6 @@  discard block
 block discarded – undo
460 459
 	 * </code>
461 460
 	 *
462 461
 	 * @param mixed $where Predicate(s) to set, as escaped SQL statements or paramaterised queries
463
-	 * @param mixed $where,... Unlimited additional predicates
464 462
 	 * @return self Self reference
465 463
 	 */
466 464
 	public function addWhere($where) {
@@ -476,7 +474,6 @@  discard block
 block discarded – undo
476 474
 	 * @see SQLConditionalExpression::addWhere()
477 475
 	 *
478 476
 	 * @param mixed $filters Predicate(s) to set, as escaped SQL statements or paramaterised queries
479
-	 * @param mixed $filters,... Unlimited additional predicates
480 477
 	 * @return self Self reference
481 478
 	 */
482 479
 	public function setWhereAny($filters) {
@@ -490,7 +487,6 @@  discard block
 block discarded – undo
490 487
 	 * @see SQLConditionalExpression::addWhere()
491 488
 	 *
492 489
 	 * @param mixed $filters Predicate(s) to set, as escaped SQL statements or paramaterised queries
493
-	 * @param mixed $filters,... Unlimited additional predicates
494 490
 	 * @return self Self reference
495 491
 	 */
496 492
 	public function addWhereAny($filters) {
Please login to merge, or discard this patch.
ORM/Queries/SQLExpression.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
 	/**
103 103
 	 * Execute this query.
104 104
 	 *
105
-	 * @return SS_Query
105
+	 * @return \SilverStripe\ORM\Connect\SS_Query
106 106
 	 */
107 107
 	public function execute() {
108 108
 		$sql = $this->sql($parameters);
Please login to merge, or discard this patch.
ORM/Queries/SQLSelect.php 1 patch
Doc Comments   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	/**
62 62
 	 * Construct a new SQLSelect.
63 63
 	 *
64
-	 * @param array|string $select An array of SELECT fields.
64
+	 * @param string $select An array of SELECT fields.
65 65
 	 * @param array|string $from An array of FROM clauses. The first one should be just the table name.
66 66
 	 * Each should be ANSI quoted.
67 67
 	 * @param array $where An array of WHERE clauses.
@@ -115,7 +115,6 @@  discard block
 block discarded – undo
115 115
 	 * </code>
116 116
 	 *
117 117
 	 * @param string|array $fields Field names should be ANSI SQL quoted. Array keys should be unquoted.
118
-	 * @param boolean $clear Clear existing select fields?
119 118
 	 * @return $this Self reference
120 119
 	 */
121 120
 	public function setSelect($fields) {
@@ -352,7 +351,7 @@  discard block
 block discarded – undo
352 351
 	 *
353 352
 	 * @param string $value
354 353
 	 * @param string $defaultDirection
355
-	 * @return array A two element array: array($column, $direction)
354
+	 * @return string[] A two element array: array($column, $direction)
356 355
 	 */
357 356
 	private function getDirectionFromString($value, $defaultDirection = null) {
358 357
 		if(preg_match('/^(.*)(asc|desc)$/i', $value, $matches)) {
@@ -447,7 +446,6 @@  discard block
 block discarded – undo
447 446
 	 * @see SQLSelect::addWhere() for syntax examples
448 447
 	 *
449 448
 	 * @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries
450
-	 * @param mixed $having,... Unlimited additional predicates
451 449
 	 * @return self Self reference
452 450
 	 */
453 451
 	public function setHaving($having) {
@@ -462,7 +460,6 @@  discard block
 block discarded – undo
462 460
 	 * @see SQLSelect::addWhere() for syntax examples
463 461
 	 *
464 462
 	 * @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries
465
-	 * @param mixed $having,... Unlimited additional predicates
466 463
 	 * @return self Self reference
467 464
 	 */
468 465
 	public function addHaving($having) {
Please login to merge, or discard this patch.
ORM/UnsavedRelationList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
 	 * Add a number of items to the relation.
147 147
 	 *
148 148
 	 * @param array $items Items to add, as either DataObjects or IDs.
149
-	 * @return DataList
149
+	 * @return UnsavedRelationList
150 150
 	 */
151 151
 	public function addMany($items) {
152 152
 		foreach($items as $item) {
Please login to merge, or discard this patch.
ORM/ValidationResult.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
 	/**
22 22
 	 * Create a new ValidationResult.
23 23
 	 * By default, it is a successful result.	Call $this->error() to record errors.
24
+	 * @param string $message
24 25
 	 */
25 26
 	public function __construct($valid = true, $message = null) {
26 27
 		$this->isValid = $valid;
Please login to merge, or discard this patch.
ORM/Versioning/ChangeSetItem.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 * Find version of this object in the given stage
139 139
 	 *
140 140
 	 * @param string $stage
141
-	 * @return Versioned|DataObject
141
+	 * @return DataObject|null
142 142
 	 */
143 143
 	protected function getObjectInStage($stage) {
144 144
 		return Versioned::get_by_stage($this->ObjectClass, $stage)->byID($this->ObjectID);
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	/**
148 148
 	 * Find latest version of this object
149 149
 	 *
150
-	 * @return Versioned|DataObject
150
+	 * @return DataObject|null
151 151
 	 */
152 152
 	protected function getObjectLatestVersion() {
153 153
 		return Versioned::get_latest_version($this->ObjectClass, $this->ObjectID);
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 	 * Get the ChangeSetItems that reference a passed DataObject
332 332
 	 *
333 333
 	 * @param DataObject $object
334
-	 * @return DataList
334
+	 * @return \SilverStripe\ORM\DataList
335 335
 	 */
336 336
 	public static function get_for_object($object) {
337 337
 		return ChangeSetItem::get()->filter([
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 	 *
346 346
 	 * @param int $objectID The ID of the object
347 347
 	 * @param string $objectClass The class of the object (or any parent class)
348
-	 * @return DataList
348
+	 * @return \SilverStripe\ORM\DataList
349 349
 	 */
350 350
 	public static function get_for_object_by_id($objectID, $objectClass) {
351 351
 		return ChangeSetItem::get()->filter([
Please login to merge, or discard this patch.
ORM/Versioning/DataDifferencer.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -47,6 +47,7 @@
 block discarded – undo
47 47
 	 *
48 48
 	 * @param DataObject (Optional)
49 49
 	 * @param DataObject
50
+	 * @param DataObject|null $fromRecord
50 51
 	 */
51 52
 	public function __construct($fromRecord, DataObject $toRecord) {
52 53
 		if(!$toRecord) user_error("DataDifferencer constructed without a toRecord", E_USER_WARNING);
Please login to merge, or discard this patch.
ORM/Versioning/Versioned.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1069,7 +1069,7 @@  discard block
 block discarded – undo
1069 1069
 	/**
1070 1070
 	 * Find objects in the given relationships, merging them into the given list
1071 1071
 	 *
1072
-	 * @param array $source Config property to extract relationships from
1072
+	 * @param string $source Config property to extract relationships from
1073 1073
 	 * @param bool $recursive True if recursive
1074 1074
 	 * @param ArrayList $list Optional list to add items to
1075 1075
 	 * @return ArrayList The list
@@ -1189,7 +1189,7 @@  discard block
 block discarded – undo
1189 1189
 	/**
1190 1190
 	 * Check if the current user can delete this record from live
1191 1191
 	 *
1192
-	 * @param null $member
1192
+	 * @param null|DataObject $member
1193 1193
 	 * @return mixed
1194 1194
 	 */
1195 1195
 	public function canUnpublish($member = null) {
@@ -1299,7 +1299,7 @@  discard block
 block discarded – undo
1299 1299
 	 * Extend permissions to include additional security for objects that are not published to live.
1300 1300
 	 *
1301 1301
 	 * @param Member $member
1302
-	 * @return bool|null
1302
+	 * @return false|null
1303 1303
 	 */
1304 1304
 	public function canView($member = null) {
1305 1305
 		// Invoke default version-gnostic canView
@@ -1374,7 +1374,7 @@  discard block
 block discarded – undo
1374 1374
 	 *
1375 1375
 	 * @param string $stage
1376 1376
 	 * @param Member $member
1377
-	 * @return bool
1377
+	 * @return boolean|string
1378 1378
 	 */
1379 1379
 	public function canViewStage($stage = 'Live', $member = null) {
1380 1380
 		$oldMode = Versioned::get_reading_mode();
@@ -1439,7 +1439,7 @@  discard block
 block discarded – undo
1439 1439
 	/**
1440 1440
 	 * Get the latest published DataObject.
1441 1441
 	 *
1442
-	 * @return DataObject
1442
+	 * @return string
1443 1443
 	 */
1444 1444
 	public function latestPublished() {
1445 1445
 		// Get the root data object class - this will have the version field
@@ -1918,7 +1918,7 @@  discard block
 block discarded – undo
1918 1918
 	/**
1919 1919
 	 * Determine if the current user is able to set the given site stage / archive
1920 1920
 	 *
1921
-	 * @param SS_HTTPRequest $request
1921
+	 * @param \SS_HTTPRequest $request
1922 1922
 	 * @return bool
1923 1923
 	 */
1924 1924
 	public static function can_choose_site_stage($request) {
@@ -2431,7 +2431,7 @@  discard block
 block discarded – undo
2431 2431
 	/**
2432 2432
 	 * Returns an array of possible stages.
2433 2433
 	 *
2434
-	 * @return array
2434
+	 * @return string[]
2435 2435
 	 */
2436 2436
 	public function getVersionedStages() {
2437 2437
 		if($this->hasStages()) {
Please login to merge, or discard this patch.
ORM/Versioning/VersionedGridFieldItemRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
      *
83 83
      * @param array $data
84 84
      * @param Form $form
85
-	 * @return SS_HTTPResponse
85
+	 * @return \SS_HTTPResponse|null
86 86
      */
87 87
 	public function doArchive($data, $form) {
88 88
 		$record = $this->getRecord();
Please login to merge, or discard this patch.