Completed
Pull Request — master (#6604)
by Andrew
11:43
created
src/ORM/HasManyList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      *
67 67
      * It does so by setting the relationFilters.
68 68
      *
69
-     * @param DataObject|int $item The DataObject to be added, or its ID
69
+     * @param DataObject|null $item The DataObject to be added, or its ID
70 70
      */
71 71
     public function add($item)
72 72
     {
Please login to merge, or discard this patch.
src/ORM/Hierarchy/Hierarchy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
     /**
473 473
      * Return the IDs of all the marked nodes.
474 474
      *
475
-     * @return array
475
+     * @return integer[]
476 476
      */
477 477
     public function markedNodeIDs()
478 478
     {
@@ -915,7 +915,7 @@  discard block
 block discarded – undo
915 915
      * Get the next node in the tree of the type. If there is no instance of the className descended from this node,
916 916
      * then search the parents.
917 917
      * @param string     $className Class name of the node to find.
918
-     * @param string|int $root      ID/ClassName of the node to limit the search to
918
+     * @param integer $root      ID/ClassName of the node to limit the search to
919 919
      * @param DataObject $afterNode Used for recursive calls to this function
920 920
      * @return DataObject
921 921
      */
Please login to merge, or discard this patch.
src/ORM/ManyManyThroughQueryManipulator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @param mixed $joinClass
63
+     * @param string $joinClass
64 64
      * @return $this
65 65
      */
66 66
     public function setJoinClass($joinClass)
Please login to merge, or discard this patch.
src/ORM/Map.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -46,6 +46,7 @@  discard block
 block discarded – undo
46 46
      * Set the key field for this map.
47 47
      *
48 48
      * @var string $keyField
49
+     * @param string $keyField
49 50
      */
50 51
     public function setKeyField($keyField)
51 52
     {
@@ -56,6 +57,7 @@  discard block
 block discarded – undo
56 57
      * Set the value field for this map.
57 58
      *
58 59
      * @var string $valueField
60
+     * @param string $valueField
59 61
      */
60 62
     public function setValueField($valueField)
61 63
     {
@@ -105,6 +107,7 @@  discard block
 block discarded – undo
105 107
      *
106 108
      * @var string $key
107 109
      * @var mixed $value
110
+     * @param string $value
108 111
      * @return $this
109 112
      */
110 113
     public function unshift($key, $value)
@@ -126,6 +129,7 @@  discard block
 block discarded – undo
126 129
      *
127 130
      * @var string $key
128 131
      * @var mixed $value
132
+     * @param string $value
129 133
      * @return $this
130 134
      */
131 135
     public function push($key, $value)
Please login to merge, or discard this patch.
src/ORM/Queries/SQLConditionalExpression.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -398,7 +398,6 @@  discard block
 block discarded – undo
398 398
      * @see SQLConditionalExpression::addWhere() for syntax examples
399 399
      *
400 400
      * @param mixed $where Predicate(s) to set, as escaped SQL statements or paramaterised queries
401
-     * @param mixed $where,... Unlimited additional predicates
402 401
      * @return $this Self reference
403 402
      */
404 403
     public function setWhere($where)
@@ -485,7 +484,6 @@  discard block
 block discarded – undo
485 484
      * </code>
486 485
      *
487 486
      * @param mixed $where Predicate(s) to set, as escaped SQL statements or paramaterised queries
488
-     * @param mixed $where,... Unlimited additional predicates
489 487
      * @return $this Self reference
490 488
      */
491 489
     public function addWhere($where)
@@ -502,7 +500,6 @@  discard block
 block discarded – undo
502 500
      * @see SQLConditionalExpression::addWhere()
503 501
      *
504 502
      * @param mixed $filters Predicate(s) to set, as escaped SQL statements or paramaterised queries
505
-     * @param mixed $filters,... Unlimited additional predicates
506 503
      * @return $this Self reference
507 504
      */
508 505
     public function setWhereAny($filters)
@@ -517,7 +514,6 @@  discard block
 block discarded – undo
517 514
      * @see SQLConditionalExpression::addWhere()
518 515
      *
519 516
      * @param mixed $filters Predicate(s) to set, as escaped SQL statements or paramaterised queries
520
-     * @param mixed $filters,... Unlimited additional predicates
521 517
      * @return $this Self reference
522 518
      */
523 519
     public function addWhereAny($filters)
Please login to merge, or discard this patch.
src/ORM/Queries/SQLSelect.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * Construct a new SQLSelect.
68 68
      *
69
-     * @param array|string $select An array of SELECT fields.
69
+     * @param string $select An array of SELECT fields.
70 70
      * @param array|string $from An array of FROM clauses. The first one should be just the table name.
71 71
      * Each should be ANSI quoted.
72 72
      * @param array $where An array of WHERE clauses.
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
      *
379 379
      * @param string $value
380 380
      * @param string $defaultDirection
381
-     * @return array A two element array: array($column, $direction)
381
+     * @return string[] A two element array: array($column, $direction)
382 382
      */
383 383
     private function getDirectionFromString($value, $defaultDirection = null)
384 384
     {
@@ -480,7 +480,6 @@  discard block
 block discarded – undo
480 480
      * @see SQLSelect::addWhere() for syntax examples
481 481
      *
482 482
      * @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries
483
-     * @param mixed $having,... Unlimited additional predicates
484 483
      * @return $this Self reference
485 484
      */
486 485
     public function setHaving($having)
@@ -496,7 +495,6 @@  discard block
 block discarded – undo
496 495
      * @see SQLSelect::addWhere() for syntax examples
497 496
      *
498 497
      * @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries
499
-     * @param mixed $having,... Unlimited additional predicates
500 498
      * @return $this Self reference
501 499
      */
502 500
     public function addHaving($having)
Please login to merge, or discard this patch.
src/ORM/RelationList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Any number of foreign keys to apply to this list
17 17
      *
18
-     * @return string|array|null
18
+     * @return string|null
19 19
      */
20 20
     public function getForeignID()
21 21
     {
Please login to merge, or discard this patch.
src/ORM/UnsavedRelationList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     /**
52 52
      * Create a new UnsavedRelationList
53 53
      *
54
-     * @param array $baseClass
54
+     * @param string $baseClass
55 55
      * @param string $relationName
56 56
      * @param string $dataClass The DataObject class used in the relation
57 57
      */
Please login to merge, or discard this patch.
src/ORM/Versioning/ChangeSetItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      * Find version of this object in the given stage
159 159
      *
160 160
      * @param string $stage
161
-     * @return DataObject|Versioned
161
+     * @return DataObject|null
162 162
      * @throws UnexpectedDataException
163 163
      */
164 164
     protected function getObjectInStage($stage)
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 
173 173
     /**
174 174
      * Find latest version of this object
175
-     * @return DataObject|Versioned
175
+     * @return DataObject|null
176 176
      * @throws UnexpectedDataException
177 177
      */
178 178
     protected function getObjectLatestVersion()
Please login to merge, or discard this patch.