Completed
Pull Request — master (#7083)
by Sam
07:25
created
src/ORM/FieldType/DBCurrency.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@  discard block
 block discarded – undo
24 24
      */
25 25
     private static $currency_symbol = '$';
26 26
 
27
+    /**
28
+     * @param string $name
29
+     */
27 30
     public function __construct($name = null, $wholeSize = 9, $decimalSize = 2, $defaultValue = 0)
28 31
     {
29 32
         parent::__construct($name, $wholeSize, $decimalSize, $defaultValue);
@@ -56,6 +59,9 @@  discard block
 block discarded – undo
56 59
         }
57 60
     }
58 61
 
62
+    /**
63
+     * @param string $value
64
+     */
59 65
     public function setValue($value, $record = null, $markChanged = true)
60 66
     {
61 67
         $matches = null;
Please login to merge, or discard this patch.
src/ORM/FieldType/DBDecimal.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param string $name
20 20
      * @param int $wholeSize
21 21
      * @param int $decimalSize
22
-     * @param float|int $defaultValue
22
+     * @param integer $defaultValue
23 23
      */
24 24
     public function __construct($name = null, $wholeSize = 9, $decimalSize = 2, $defaultValue = 0)
25 25
     {
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @return float
36
+     * @return string
37 37
      */
38 38
     public function Nice()
39 39
     {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     }
42 42
 
43 43
     /**
44
-     * @return int
44
+     * @return double
45 45
      */
46 46
     public function Int()
47 47
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @return float
91
+     * @return integer
92 92
      */
93 93
     public function nullValue()
94 94
     {
Please login to merge, or discard this patch.
src/ORM/FieldType/DBField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -529,7 +529,7 @@
 block discarded – undo
529 529
     }
530 530
 
531 531
     /**
532
-     * @param array $value
532
+     * @param string $value
533 533
      * @return $this
534 534
      */
535 535
     public function setArrayValue($value)
Please login to merge, or discard this patch.
src/ORM/FieldType/DBPrimaryKey.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
      */
25 25
     protected $autoIncrement = true;
26 26
 
27
+    /**
28
+     * @param boolean $autoIncrement
29
+     */
27 30
     public function setAutoIncrement($autoIncrement)
28 31
     {
29 32
         $this->autoIncrement = $autoIncrement;
Please login to merge, or discard this patch.
src/ORM/FieldType/DBYear.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
         DB::require_field($this->tableName, $this->name, $values);
19 19
     }
20 20
 
21
+    /**
22
+     * @param string $title
23
+     */
21 24
     public function scaffoldFormField($title = null, $params = null)
22 25
     {
23 26
         $selectBox = new DropdownField($this->name, $title);
Please login to merge, or discard this patch.
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/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.