Completed
Pull Request — master (#6518)
by Sam
09:39
created
src/ORM/FieldType/DBDatetime.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
      * Return a date and time formatted as per a CMS user's settings.
127 127
      *
128 128
      * @param Member $member
129
-     * @return boolean | string A time and date pair formatted as per user-defined settings.
129
+     * @return false|string | string A time and date pair formatted as per user-defined settings.
130 130
      */
131 131
     public function FormatFromSettings($member = null)
132 132
     {
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/DBTime.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@
 block discarded – undo
78 78
         return null;
79 79
     }
80 80
 
81
+    /**
82
+     * @param string[] $parts
83
+     */
81 84
     public function TwelveHour($parts)
82 85
     {
83 86
         $hour = $parts[1];
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/Filters/SearchFilter.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *  column. Can contain a relation name in dot notation, which will automatically join
64 64
      *  the necessary tables (e.g. "Comments.Name" to join the "Comments" has-many relationship and
65 65
      *  search the "Name" column when applying this filter to a SiteTree class).
66
-     * @param mixed $value
66
+     * @param string $value
67 67
      * @param array $modifiers
68 68
      */
69 69
     public function __construct($fullName = null, $value = false, array $modifiers = array())
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     /**
150 150
      * Gets supported modifiers for this filter
151 151
      *
152
-     * @return array
152
+     * @return string[]
153 153
      */
154 154
     public function getSupportedModifiers()
155 155
     {
@@ -198,6 +198,7 @@  discard block
 block discarded – undo
198 198
 
199 199
     /**
200 200
      * @param String
201
+     * @param string $name
201 202
      */
202 203
     public function setFullName($name)
203 204
     {
@@ -342,7 +343,7 @@  discard block
 block discarded – undo
342 343
     /**
343 344
      * Determines case sensitivity based on {@link getModifiers()}.
344 345
      *
345
-     * @return Mixed TRUE or FALSE to enforce sensitivity, NULL to use field collation.
346
+     * @return boolean|null TRUE or FALSE to enforce sensitivity, NULL to use field collation.
346 347
      */
347 348
     protected function getCaseSensitive()
348 349
     {
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/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.