@@ -44,6 +44,7 @@ discard block |
||
44 | 44 | * Create a new DataQuery. |
45 | 45 | * |
46 | 46 | * @param String The name of the DataObject class that you wish to query |
47 | + * @param string $dataClass |
|
47 | 48 | */ |
48 | 49 | public function __construct($dataClass) { |
49 | 50 | $this->dataClass = $dataClass; |
@@ -166,7 +167,7 @@ discard block |
||
166 | 167 | /** |
167 | 168 | * Ensure that the query is ready to execute. |
168 | 169 | * |
169 | - * @param array|null $queriedColumns Any columns to filter the query by |
|
170 | + * @param string[] $queriedColumns Any columns to filter the query by |
|
170 | 171 | * @return SQLSelect The finalised sql query |
171 | 172 | */ |
172 | 173 | public function getFinalisedQuery($queriedColumns = null) { |
@@ -641,7 +642,7 @@ discard block |
||
641 | 642 | * mappings to the query object state. This has to be called |
642 | 643 | * in any overloaded {@link SearchFilter->apply()} methods manually. |
643 | 644 | * |
644 | - * @param String|array $relation The array/dot-syntax relation to follow |
|
645 | + * @param string $relation The array/dot-syntax relation to follow |
|
645 | 646 | * @param bool $linearOnly Set to true to restrict to linear relations only. Set this |
646 | 647 | * if this relation will be used for sorting, and should not include duplicate rows. |
647 | 648 | * @return The model class of the related item |
@@ -917,6 +918,7 @@ discard block |
||
917 | 918 | |
918 | 919 | /** |
919 | 920 | * Set an arbitrary query parameter, that can be used by decorators to add additional meta-data to the query. |
921 | + * @param string $key |
|
920 | 922 | */ |
921 | 923 | public function getQueryParam($key) { |
922 | 924 | if(isset($this->queryParams[$key])) return $this->queryParams[$key]; |
@@ -949,6 +951,9 @@ discard block |
||
949 | 951 | */ |
950 | 952 | protected $whereQuery; |
951 | 953 | |
954 | + /** |
|
955 | + * @param string $connective |
|
956 | + */ |
|
952 | 957 | public function __construct(DataQuery $base, $connective) { |
953 | 958 | $this->dataClass = $base->dataClass; |
954 | 959 | $this->query = $base->query; |
@@ -958,6 +963,9 @@ discard block |
||
958 | 963 | $base->where($this); |
959 | 964 | } |
960 | 965 | |
966 | + /** |
|
967 | + * @param string $filter |
|
968 | + */ |
|
961 | 969 | public function where($filter) { |
962 | 970 | if($filter) { |
963 | 971 | $this->whereQuery->addWhere($filter); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * Construct a new SQLSelect. |
63 | 63 | * |
64 | - * @param array|string $select An array of SELECT fields. |
|
64 | + * @param string $select An array of SELECT fields. |
|
65 | 65 | * @param array|string $from An array of FROM clauses. The first one should be just the table name. |
66 | 66 | * Each should be ANSI quoted. |
67 | 67 | * @param array $where An array of WHERE clauses. |
@@ -115,7 +115,6 @@ discard block |
||
115 | 115 | * </code> |
116 | 116 | * |
117 | 117 | * @param string|array $fields Field names should be ANSI SQL quoted. Array keys should be unquoted. |
118 | - * @param boolean $clear Clear existing select fields? |
|
119 | 118 | * @return $this Self reference |
120 | 119 | */ |
121 | 120 | public function setSelect($fields) { |
@@ -352,7 +351,7 @@ discard block |
||
352 | 351 | * |
353 | 352 | * @param string $value |
354 | 353 | * @param string $defaultDirection |
355 | - * @return array A two element array: array($column, $direction) |
|
354 | + * @return string[] A two element array: array($column, $direction) |
|
356 | 355 | */ |
357 | 356 | private function getDirectionFromString($value, $defaultDirection = null) { |
358 | 357 | if(preg_match('/^(.*)(asc|desc)$/i', $value, $matches)) { |
@@ -447,7 +446,6 @@ discard block |
||
447 | 446 | * @see SQLSelect::addWhere() for syntax examples |
448 | 447 | * |
449 | 448 | * @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries |
450 | - * @param mixed $having,... Unlimited additional predicates |
|
451 | 449 | * @return self Self reference |
452 | 450 | */ |
453 | 451 | public function setHaving($having) { |
@@ -462,7 +460,6 @@ discard block |
||
462 | 460 | * @see SQLSelect::addWhere() for syntax examples |
463 | 461 | * |
464 | 462 | * @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries |
465 | - * @param mixed $having,... Unlimited additional predicates |
|
466 | 463 | * @return self Self reference |
467 | 464 | */ |
468 | 465 | public function addHaving($having) { |
@@ -121,6 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | /** |
123 | 123 | * Set the DataModel for this request. |
124 | + * @param DataModel $model |
|
124 | 125 | */ |
125 | 126 | public function setDataModel($model) { |
126 | 127 | $this->model = $model; |
@@ -238,6 +239,9 @@ discard block |
||
238 | 239 | return $this; |
239 | 240 | } |
240 | 241 | |
242 | + /** |
|
243 | + * @param SS_HTTPRequest $request |
|
244 | + */ |
|
241 | 245 | protected function findAction($request) { |
242 | 246 | $handlerClass = ($this->class) ? $this->class : get_class($this); |
243 | 247 | |
@@ -271,7 +275,7 @@ discard block |
||
271 | 275 | * |
272 | 276 | * Must not raise SS_HTTPResponse_Exceptions - instead it should return |
273 | 277 | * |
274 | - * @param $request |
|
278 | + * @param SS_HTTPRequest $request |
|
275 | 279 | * @param $action |
276 | 280 | * @return SS_HTTPResponse |
277 | 281 | */ |
@@ -384,6 +388,7 @@ discard block |
||
384 | 388 | |
385 | 389 | /** |
386 | 390 | * Return the class that defines the given action, so that we know where to check allowed_actions. |
391 | + * @return string|null |
|
387 | 392 | */ |
388 | 393 | protected function definingClassForAction($actionOrigCasing) { |
389 | 394 | $action = strtolower($actionOrigCasing); |
@@ -493,6 +498,7 @@ discard block |
||
493 | 498 | * or {@link handleRequest()}, but in some based we want to set it manually. |
494 | 499 | * |
495 | 500 | * @param SS_HTTPRequest |
501 | + * @param SS_HTTPRequest $request |
|
496 | 502 | */ |
497 | 503 | public function setRequest($request) { |
498 | 504 | $this->request = $request; |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | /** |
50 | 50 | * Assign a new configuration instance or identifier |
51 | 51 | * |
52 | - * @param string|HtmlEditorConfig $config |
|
52 | + * @param string $config |
|
53 | 53 | * @return $this |
54 | 54 | */ |
55 | 55 | public function setEditorConfig($config) { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @param string $name The internal field name, passed to forms. |
65 | 65 | * @param string $title The human-readable field label. |
66 | - * @param mixed $value The value of the field. |
|
66 | + * @param integer $value The value of the field. |
|
67 | 67 | * @param string $config HtmlEditorConfig identifier to be used. Default to the active one. |
68 | 68 | */ |
69 | 69 | public function __construct($name, $title = null, $value = '', $config = null) { |
@@ -104,6 +104,9 @@ discard block |
||
104 | 104 | $record->{$this->name} = $htmlValue->getContent(); |
105 | 105 | } |
106 | 106 | |
107 | + /** |
|
108 | + * @param string|null $value |
|
109 | + */ |
|
107 | 110 | public function setValue($value) { |
108 | 111 | // Regenerate links prior to preview, so that the editor can see them. |
109 | 112 | $value = Image::regenerate_html_links($value); |
@@ -171,6 +174,10 @@ discard block |
||
171 | 174 | |
172 | 175 | protected $controller, $name; |
173 | 176 | |
177 | + /** |
|
178 | + * @param Controller $controller |
|
179 | + * @param string $name |
|
180 | + */ |
|
174 | 181 | public function __construct($controller, $name) { |
175 | 182 | parent::__construct(); |
176 | 183 | |
@@ -189,7 +196,7 @@ discard block |
||
189 | 196 | /** |
190 | 197 | * Searches the SiteTree for display in the dropdown |
191 | 198 | * |
192 | - * @return callback |
|
199 | + * @return DataList |
|
193 | 200 | */ |
194 | 201 | public function siteTreeSearchCallback($sourceObject, $labelField, $search) { |
195 | 202 | return DataObject::get($sourceObject)->filterAny(array( |
@@ -467,7 +474,7 @@ discard block |
||
467 | 474 | /** |
468 | 475 | * Find all anchors available on the given page. |
469 | 476 | * |
470 | - * @return array |
|
477 | + * @return string |
|
471 | 478 | */ |
472 | 479 | public function getanchors() { |
473 | 480 | $id = (int)$this->getRequest()->getVar('PageID'); |
@@ -1025,7 +1032,7 @@ discard block |
||
1025 | 1032 | /** |
1026 | 1033 | * Get OEmbed type |
1027 | 1034 | * |
1028 | - * @return string |
|
1035 | + * @return boolean |
|
1029 | 1036 | */ |
1030 | 1037 | public function getType() { |
1031 | 1038 | return $this->oembed->type; |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | * The callback can opt out of handling specific responses by returning NULL, |
499 | 499 | * in which case the default form behaviour will kick in. |
500 | 500 | * |
501 | - * @param $callback |
|
501 | + * @param Closure $callback |
|
502 | 502 | * @return self |
503 | 503 | */ |
504 | 504 | public function setValidationResponseCallback($callback) { |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | /** |
559 | 559 | * Fields can have action to, let's check if anyone of the responds to $funcname them |
560 | 560 | * |
561 | - * @param SS_List|array $fields |
|
561 | + * @param FieldList|null $fields |
|
562 | 562 | * @param callable $funcName |
563 | 563 | * @return FormField |
564 | 564 | */ |
@@ -697,6 +697,7 @@ discard block |
||
697 | 697 | * Set actions that are exempt from validation |
698 | 698 | * |
699 | 699 | * @param array |
700 | + * @param string[] $actions |
|
700 | 701 | */ |
701 | 702 | public function setValidationExemptActions($actions) { |
702 | 703 | $this->validationExemptActions = $actions; |
@@ -836,6 +837,7 @@ discard block |
||
836 | 837 | } |
837 | 838 | |
838 | 839 | /** |
840 | + * @param string $name |
|
839 | 841 | * @return string $name |
840 | 842 | */ |
841 | 843 | public function getAttribute($name) { |
@@ -870,6 +872,7 @@ discard block |
||
870 | 872 | * |
871 | 873 | * @param array Custom attributes to process. Falls back to {@link getAttributes()}. |
872 | 874 | * If at least one argument is passed as a string, all arguments act as excludes by name. |
875 | + * @param string $attrs |
|
873 | 876 | * |
874 | 877 | * @return string HTML attributes, ready for insertion into an HTML tag |
875 | 878 | */ |
@@ -1077,7 +1080,7 @@ discard block |
||
1077 | 1080 | * If set to false (the default), then the form method is only used to construct the default |
1078 | 1081 | * form. |
1079 | 1082 | * |
1080 | - * @param $bool boolean |
|
1083 | + * @param boolean $bool boolean |
|
1081 | 1084 | * @return $this |
1082 | 1085 | */ |
1083 | 1086 | public function setStrictFormMethodCheck($bool) { |
@@ -1592,7 +1595,7 @@ discard block |
||
1592 | 1595 | * This is returned when you access a form as $FormObject rather |
1593 | 1596 | * than <% with FormObject %> |
1594 | 1597 | * |
1595 | - * @return HTML |
|
1598 | + * @return DBField |
|
1596 | 1599 | */ |
1597 | 1600 | public function forTemplate() { |
1598 | 1601 | $return = $this->renderWith(array_merge( |
@@ -1612,7 +1615,7 @@ discard block |
||
1612 | 1615 | * It triggers slightly different behaviour, such as disabling the rewriting |
1613 | 1616 | * of # links. |
1614 | 1617 | * |
1615 | - * @return HTML |
|
1618 | + * @return DBField |
|
1616 | 1619 | */ |
1617 | 1620 | public function forAjaxTemplate() { |
1618 | 1621 | $view = new SSViewer(array( |
@@ -1635,7 +1638,7 @@ discard block |
||
1635 | 1638 | * and _form_enctype. These are the attributes of the form. These fields |
1636 | 1639 | * can be used to send the form to Ajax. |
1637 | 1640 | * |
1638 | - * @return HTML |
|
1641 | + * @return string |
|
1639 | 1642 | */ |
1640 | 1643 | public function formHtmlContent() { |
1641 | 1644 | $this->IncludeFormTag = false; |
@@ -1896,6 +1899,9 @@ discard block |
||
1896 | 1899 | |
1897 | 1900 | protected $form; |
1898 | 1901 | |
1902 | + /** |
|
1903 | + * @param Form $form |
|
1904 | + */ |
|
1899 | 1905 | public function __construct($form) { |
1900 | 1906 | $this->form = $form; |
1901 | 1907 | parent::__construct(); |
@@ -59,7 +59,7 @@ |
||
59 | 59 | * Returns a <select> tag containing all the appropriate <option> tags |
60 | 60 | * |
61 | 61 | * @param array $properties |
62 | - * @return string |
|
62 | + * @return DBField |
|
63 | 63 | */ |
64 | 64 | public function Field($properties = array()) { |
65 | 65 | $properties = array_merge($properties, array( |
@@ -36,6 +36,10 @@ discard block |
||
36 | 36 | */ |
37 | 37 | protected $fieldCurrency = null; |
38 | 38 | |
39 | + /** |
|
40 | + * @param string $name |
|
41 | + * @param string $title |
|
42 | + */ |
|
39 | 43 | public function __construct($name, $title = null, $value = "") { |
40 | 44 | // naming with underscores to prevent values from actually being saved somewhere |
41 | 45 | $this->fieldAmount = new NumericField("{$name}[Amount]", _t('MoneyField.FIELDLABELAMOUNT', 'Amount')); |
@@ -46,7 +50,7 @@ discard block |
||
46 | 50 | |
47 | 51 | /** |
48 | 52 | * @param array |
49 | - * @return HTMLText |
|
53 | + * @return DBField |
|
50 | 54 | */ |
51 | 55 | public function Field($properties = array()) { |
52 | 56 | return DBField::create_field('HTMLText', |
@@ -139,6 +143,7 @@ discard block |
||
139 | 143 | /** |
140 | 144 | * @todo Implement removal of readonly state with $bool=false |
141 | 145 | * @todo Set readonly state whenever field is recreated, e.g. in setAllowedCurrencies() |
146 | + * @param boolean $bool |
|
142 | 147 | */ |
143 | 148 | public function setReadonly($bool) { |
144 | 149 | parent::setReadonly($bool); |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | * |
249 | 249 | * @param array $args Array of input shortcode arguments |
250 | 250 | * @param int $errorCode If the file is not found, or is inaccessible, this will be assigned to a HTTP error code. |
251 | - * @return File|null The File DataObject, if it can be found. |
|
251 | + * @return null|DataObject The File DataObject, if it can be found. |
|
252 | 252 | */ |
253 | 253 | public static function find_shortcode_record($args, &$errorCode = null) { |
254 | 254 | // Validate shortcode |
@@ -617,7 +617,7 @@ discard block |
||
617 | 617 | * |
618 | 618 | * @param string $condition The PHP condition to be evaluated. The page will be called $item |
619 | 619 | * @param array $collator An array, passed by reference, to collect all of the matching descendants. |
620 | - * @return true|null |
|
620 | + * @return boolean|null |
|
621 | 621 | */ |
622 | 622 | public function collateDescendants($condition, &$collator) { |
623 | 623 | if($children = $this->Children()) { |
@@ -978,6 +978,7 @@ discard block |
||
978 | 978 | * |
979 | 979 | * @param String File extension, without dot prefix. Use an asterisk ('*') |
980 | 980 | * to specify a generic fallback if no mapping is found for an extension. |
981 | + * @param string $ext |
|
981 | 982 | * @return String Classname for a subclass of {@link File} |
982 | 983 | */ |
983 | 984 | public static function get_class_for_file_extension($ext) { |
@@ -1115,7 +1116,6 @@ discard block |
||
1115 | 1116 | * Note that the result will not have a leading slash, and should not be used |
1116 | 1117 | * with local file paths. |
1117 | 1118 | * |
1118 | - * @param string $part,... Parts |
|
1119 | 1119 | * @return string |
1120 | 1120 | */ |
1121 | 1121 | public static function join_paths() { |
@@ -59,7 +59,7 @@ |
||
59 | 59 | /** |
60 | 60 | * Set the owner of this extension. |
61 | 61 | * |
62 | - * @param Object $owner The owner object, |
|
62 | + * @param null|DataObject $owner The owner object, |
|
63 | 63 | * @param string $ownerBaseClass The base class that the extension is applied to; this may be |
64 | 64 | * the class of owner, or it may be a parent. For example, if Versioned was applied to SiteTree, |
65 | 65 | * and then a Page object was instantiated, $owner would be a Page object, but $ownerBaseClass |