@@ -220,6 +220,9 @@ |
||
220 | 220 | return null; |
221 | 221 | } |
222 | 222 | |
223 | + /** |
|
224 | + * @param string $field |
|
225 | + */ |
|
223 | 226 | public function hasField($field) |
224 | 227 | { |
225 | 228 | $fields = $this->compositeDatabaseFields(); |
@@ -24,6 +24,9 @@ discard block |
||
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 |
||
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; |
@@ -36,6 +36,9 @@ discard block |
||
36 | 36 | */ |
37 | 37 | private static $nice_format = 'd/m/Y'; |
38 | 38 | |
39 | + /** |
|
40 | + * @param string|null $value |
|
41 | + */ |
|
39 | 42 | public function setValue($value, $record = null, $markChanged = true) |
40 | 43 | { |
41 | 44 | if ($value === false || $value === null || (is_string($value) && !strlen($value))) { |
@@ -205,7 +208,7 @@ discard block |
||
205 | 208 | * Return a date formatted as per a CMS user's settings. |
206 | 209 | * |
207 | 210 | * @param Member $member |
208 | - * @return boolean | string A date formatted as per user-defined settings. |
|
211 | + * @return false|string | string A date formatted as per user-defined settings. |
|
209 | 212 | */ |
210 | 213 | public function FormatFromSettings($member = null) |
211 | 214 | { |
@@ -126,7 +126,7 @@ |
||
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 | { |
@@ -19,7 +19,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
91 | - * @return float |
|
91 | + * @return integer |
|
92 | 92 | */ |
93 | 93 | public function nullValue() |
94 | 94 | { |
@@ -529,7 +529,7 @@ |
||
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) |
@@ -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); |