@@ -24,6 +24,9 @@ |
||
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; |
@@ -78,6 +78,9 @@ |
||
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]; |
@@ -18,6 +18,9 @@ |
||
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); |
@@ -63,7 +63,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | { |
@@ -66,7 +66,7 @@ |
||
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 | { |
@@ -472,7 +472,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -60,7 +60,7 @@ |
||
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) |
@@ -46,6 +46,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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) |
@@ -398,7 +398,6 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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) |