@@ -9,6 +9,10 @@ |
||
9 | 9 | class MemberForm extends Form |
10 | 10 | { |
11 | 11 | |
12 | + /** |
|
13 | + * @param \SilverStripe\Control\Controller $controller |
|
14 | + * @param string $name |
|
15 | + */ |
|
12 | 16 | public function __construct($controller, $name) |
13 | 17 | { |
14 | 18 | $fields = TestMember::singleton()->getCMSFields(); |
@@ -676,6 +676,8 @@ discard block |
||
676 | 676 | /** |
677 | 677 | * Execute a log-in form using Director::test(). |
678 | 678 | * Helper method for the tests above |
679 | + * @param string $email |
|
680 | + * @param string $password |
|
679 | 681 | */ |
680 | 682 | public function doTestLoginForm($email, $password, $backURL = 'test/link') |
681 | 683 | { |
@@ -697,6 +699,8 @@ discard block |
||
697 | 699 | |
698 | 700 | /** |
699 | 701 | * Helper method to execute a change password form |
702 | + * @param string $oldPassword |
|
703 | + * @param string $newPassword |
|
700 | 704 | */ |
701 | 705 | public function doTestChangepasswordForm($oldPassword, $newPassword) |
702 | 706 | { |
@@ -16,6 +16,9 @@ |
||
16 | 16 | Versioned::class |
17 | 17 | ); |
18 | 18 | |
19 | + /** |
|
20 | + * @param string $entropy |
|
21 | + */ |
|
19 | 22 | public function setEntropy($entropy) |
20 | 23 | { |
21 | 24 | $this->entropy = $entropy; |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | /** |
156 | 156 | * |
157 | 157 | * @param GridField $gridField |
158 | - * @return array |
|
158 | + * @return string[] |
|
159 | 159 | */ |
160 | 160 | public function getActions($gridField) |
161 | 161 | { |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | * |
220 | 220 | * @param GridField $gridField |
221 | 221 | * @param HTTPRequest $request |
222 | - * @return string |
|
222 | + * @return HTTPResponse |
|
223 | 223 | */ |
224 | 224 | public function doSearch($gridField, $request) |
225 | 225 | { |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | } |
300 | 300 | |
301 | 301 | /** |
302 | - * @param array $fields |
|
302 | + * @param string[] $fields |
|
303 | 303 | * @return $this |
304 | 304 | */ |
305 | 305 | public function setSearchFields($fields) |
@@ -41,6 +41,7 @@ |
||
41 | 41 | * Useful for keeping a decorator/paginated list configuration intact while modifying |
42 | 42 | * the underlying list. |
43 | 43 | * |
44 | + * @param SS_List $list |
|
44 | 45 | * @return SS_List |
45 | 46 | */ |
46 | 47 | public function setList($list) |
@@ -33,6 +33,10 @@ discard block |
||
33 | 33 | */ |
34 | 34 | protected $underlay; |
35 | 35 | |
36 | + /** |
|
37 | + * @param ViewableData $item |
|
38 | + * @param ViewableData $inheritedScope |
|
39 | + */ |
|
36 | 40 | public function __construct($item, $overlay = null, $underlay = null, $inheritedScope = null) |
37 | 41 | { |
38 | 42 | parent::__construct($item, $inheritedScope); |
@@ -65,6 +69,9 @@ discard block |
||
65 | 69 | $this->underlay = $underlay ? $underlay : array(); |
66 | 70 | } |
67 | 71 | |
72 | + /** |
|
73 | + * @param string $variableMethod |
|
74 | + */ |
|
68 | 75 | protected function createCallableArray(&$extraArray, $interfaceToQuery, $variableMethod, $createObject = false) |
69 | 76 | { |
70 | 77 | $implementers = ClassInfo::implementorsOf($interfaceToQuery); |
@@ -9,6 +9,10 @@ discard block |
||
9 | 9 | * the bracket if a failed match + restore has moved the current position backwards - so we have to check that too. |
10 | 10 | */ |
11 | 11 | class ParserRegexp { |
12 | + |
|
13 | + /** |
|
14 | + * @param Parser $parser |
|
15 | + */ |
|
12 | 16 | function __construct( $parser, $rx ) { |
13 | 17 | $this->parser = $parser ; |
14 | 18 | $this->rx = $rx . 'Sx' ; |
@@ -83,6 +87,9 @@ discard block |
||
83 | 87 | return FALSE ; |
84 | 88 | } |
85 | 89 | |
90 | + /** |
|
91 | + * @param string $token |
|
92 | + */ |
|
86 | 93 | function literal( $token ) { |
87 | 94 | /* Debugging: * / print( "Looking for token '$token' @ '" . substr( $this->string, $this->pos ) . "'\n" ) ; /* */ |
88 | 95 | $toklen = strlen( $token ) ; |
@@ -94,11 +101,17 @@ discard block |
||
94 | 101 | return FALSE ; |
95 | 102 | } |
96 | 103 | |
104 | + /** |
|
105 | + * @param string $rx |
|
106 | + */ |
|
97 | 107 | function rx( $rx ) { |
98 | 108 | if ( !isset( $this->regexps[$rx] ) ) $this->regexps[$rx] = new ParserRegexp( $this, $rx ) ; |
99 | 109 | return $this->regexps[$rx]->match() ; |
100 | 110 | } |
101 | 111 | |
112 | + /** |
|
113 | + * @param string $value |
|
114 | + */ |
|
102 | 115 | function expression( $result, $stack, $value ) { |
103 | 116 | $stack[] = $result; $rv = false; |
104 | 117 | |
@@ -120,14 +133,26 @@ discard block |
||
120 | 133 | return is_array($rv) ? $rv['text'] : ($rv ? $rv : ''); |
121 | 134 | } |
122 | 135 | |
136 | + /** |
|
137 | + * @param string $key |
|
138 | + * @param integer $pos |
|
139 | + */ |
|
123 | 140 | function packhas( $key, $pos ) { |
124 | 141 | return false ; |
125 | 142 | } |
126 | 143 | |
144 | + /** |
|
145 | + * @param string $key |
|
146 | + * @param integer $pos |
|
147 | + */ |
|
127 | 148 | function packread( $key, $pos ) { |
128 | 149 | throw new \Exception('PackRead after PackHas=>false in Parser.php'); |
129 | 150 | } |
130 | 151 | |
152 | + /** |
|
153 | + * @param string $key |
|
154 | + * @param integer $pos |
|
155 | + */ |
|
131 | 156 | function packwrite( $key, $pos, $res ) { |
132 | 157 | return $res ; |
133 | 158 | } |
@@ -164,6 +189,9 @@ discard block |
||
164 | 189 | return $result ; |
165 | 190 | } |
166 | 191 | |
192 | + /** |
|
193 | + * @param string $storetag |
|
194 | + */ |
|
167 | 195 | function store ( &$result, $subres, $storetag = NULL ) { |
168 | 196 | $result['text'] .= $subres['text'] ; |
169 | 197 |
@@ -136,6 +136,9 @@ discard block |
||
136 | 136 | return Injector::inst()->get($className); |
137 | 137 | } |
138 | 138 | |
139 | +/** |
|
140 | + * @return string |
|
141 | + */ |
|
139 | 142 | function project() |
140 | 143 | { |
141 | 144 | global $project; |
@@ -152,12 +155,6 @@ discard block |
||
152 | 155 | * @param string $entity Entity that identifies the string. It must be in the form |
153 | 156 | * "Namespace.Entity" where Namespace will be usually the class name where this |
154 | 157 | * string is used and Entity identifies the string inside the namespace. |
155 | - * @param mixed $arg,... Additional arguments are parsed as such: |
|
156 | - * - Next string argument is a default. Pass in a `|` pipe-delimeted value with `{count}` |
|
157 | - * to do pluralisation. |
|
158 | - * - Any other string argument after default is context for i18nTextCollector |
|
159 | - * - Any array argument in any order is an injection parameter list. Pass in a `count` |
|
160 | - * injection parameter to pluralise. |
|
161 | 158 | * @return string |
162 | 159 | */ |
163 | 160 | function _t($entity, $arg = null) |
@@ -171,7 +168,7 @@ discard block |
||
171 | 168 | * Only increases up to the maximum defined in {@link set_increase_memory_limit_max()}, |
172 | 169 | * and defaults to the 'memory_limit' setting in the PHP configuration. |
173 | 170 | * |
174 | - * @param string|int $memoryLimit A memory limit string, such as "64M". If omitted, unlimited memory will be set. |
|
171 | + * @param integer $memoryLimit A memory limit string, such as "64M". If omitted, unlimited memory will be set. |
|
175 | 172 | * @return Boolean TRUE indicates a successful change, FALSE a denied change. |
176 | 173 | */ |
177 | 174 | function increase_memory_limit_to($memoryLimit = -1) |
@@ -89,6 +89,9 @@ discard block |
||
89 | 89 | $this->sequentialSaveableSet = null; |
90 | 90 | } |
91 | 91 | |
92 | + /** |
|
93 | + * @param FormField[] $list |
|
94 | + */ |
|
92 | 95 | protected function collateDataFields(&$list, $saveableOnly = false) |
93 | 96 | { |
94 | 97 | if (!isset($list)) { |
@@ -198,7 +201,7 @@ discard block |
||
198 | 201 | * Removes a number of fields from a Tab/TabSet within this FieldList. |
199 | 202 | * |
200 | 203 | * @param string $tabName The name of the Tab or TabSet field |
201 | - * @param array $fields A list of fields, e.g. array('Name', 'Email') |
|
204 | + * @param string[] $fields A list of fields, e.g. array('Name', 'Email') |
|
202 | 205 | */ |
203 | 206 | public function removeFieldsFromTab($tabName, $fields) |
204 | 207 | { |
@@ -625,7 +628,7 @@ discard block |
||
625 | 628 | } |
626 | 629 | |
627 | 630 | /** |
628 | - * @param $field |
|
631 | + * @param CompositeField $field |
|
629 | 632 | * @return $this |
630 | 633 | */ |
631 | 634 | public function setContainerField($field) |
@@ -707,6 +710,7 @@ discard block |
||
707 | 710 | * the children collection. Doesn't work recursively. |
708 | 711 | * |
709 | 712 | * @param string|FormField |
713 | + * @param string $field |
|
710 | 714 | * @return int Position in children collection (first position starts with 0). |
711 | 715 | * Returns FALSE if the field can't be found. |
712 | 716 | */ |