@@ -287,7 +287,7 @@ |
||
| 287 | 287 | * it is also possible to override the default filters on the resulting string. |
| 288 | 288 | * |
| 289 | 289 | * @link http://php.net/manual/en/filter.filters.php |
| 290 | - * @param array $exclude |
|
| 290 | + * @param string[] $exclude |
|
| 291 | 291 | * A simple array with the keys that should be omitted in the resulting |
| 292 | 292 | * query string. |
| 293 | 293 | * @param integer $filters |
@@ -537,7 +537,7 @@ |
||
| 537 | 537 | * @since Symphony 2.3 |
| 538 | 538 | * @param string $string |
| 539 | 539 | * The string that should be cleaned-up |
| 540 | - * @return mixed |
|
| 540 | + * @return string |
|
| 541 | 541 | * Returns the transliterated string |
| 542 | 542 | */ |
| 543 | 543 | private static function applyTransliterations($string) |
@@ -418,7 +418,7 @@ |
||
| 418 | 418 | * |
| 419 | 419 | * @param string $name |
| 420 | 420 | * Name of the template |
| 421 | - * @return mixed |
|
| 421 | + * @return string|false |
|
| 422 | 422 | * String, which is the path to the template if the template is found, |
| 423 | 423 | * false otherwise |
| 424 | 424 | */ |
@@ -289,7 +289,7 @@ |
||
| 289 | 289 | * function. |
| 290 | 290 | * |
| 291 | 291 | * @see toolkit.Field#commit() |
| 292 | - * @return boolean |
|
| 292 | + * @return boolean|null |
|
| 293 | 293 | * true if the commit was successful, false otherwise. |
| 294 | 294 | */ |
| 295 | 295 | public function commit() |
@@ -140,7 +140,7 @@ |
||
| 140 | 140 | /** |
| 141 | 141 | * Accessor for `$_value` |
| 142 | 142 | * |
| 143 | - * @return string|XMLElement |
|
| 143 | + * @return string |
|
| 144 | 144 | */ |
| 145 | 145 | public function getValue() |
| 146 | 146 | { |
@@ -20,6 +20,9 @@ |
||
| 20 | 20 | return (is_array($parent_paths) && !empty($parent_paths) ? " AND p.`path` IN ('".implode("', '", $parent_paths)."')" : null); |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | + /** |
|
| 24 | + * @param integer $filter_type |
|
| 25 | + */ |
|
| 23 | 26 | public function __processNavigationTypeFilter($filter, $filter_type = Datasource::FILTER_OR) |
| 24 | 27 | { |
| 25 | 28 | $types = preg_split('/'.($filter_type == Datasource::FILTER_AND ? '\+' : '(?<!\\\\),').'\s*/', $filter, -1, PREG_SPLIT_NO_EMPTY); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param XMLElement $result |
| 66 | 66 | * @param array $fields |
| 67 | 67 | * @param array $errors |
| 68 | - * @param object $post_values |
|
| 68 | + * @param XMLElement $post_values |
|
| 69 | 69 | * @throws Exception |
| 70 | 70 | * @return XMLElement |
| 71 | 71 | */ |
@@ -192,7 +192,6 @@ discard block |
||
| 192 | 192 | * Helper method to determine if a field is missing, or if the data |
| 193 | 193 | * provided was invalid. Used in conjunction with `array_reduce`. |
| 194 | 194 | * |
| 195 | - * @param array $a, |
|
| 196 | 195 | * @param array $b |
| 197 | 196 | * @return string |
| 198 | 197 | * 'missing' or 'invalid' |
@@ -214,7 +213,7 @@ discard block |
||
| 214 | 213 | * the XML. |
| 215 | 214 | * |
| 216 | 215 | * @throws Exception |
| 217 | - * @return XMLElement|void |
|
| 216 | + * @return XMLElement |
|
| 218 | 217 | * If `$_REQUEST{'redirect']` is set, and the Event executed successfully, |
| 219 | 218 | * the user will be redirected to the given location. If `$_REQUEST['redirect']` |
| 220 | 219 | * is not set, or the Event encountered errors, an XMLElement of the Event |
@@ -303,7 +302,7 @@ discard block |
||
| 303 | 302 | * If this Event is editing an existing entry, that Entry ID will |
| 304 | 303 | * be passed to this function. |
| 305 | 304 | * @throws Exception |
| 306 | - * @return XMLElement |
|
| 305 | + * @return boolean |
|
| 307 | 306 | * The result of the Event |
| 308 | 307 | */ |
| 309 | 308 | public function __doit(array $fields = array(), XMLElement &$result, $position = null, $entry_id = null) |
@@ -98,6 +98,9 @@ |
||
| 98 | 98 | Utilities: |
| 99 | 99 | -------------------------------------------------------------------------*/ |
| 100 | 100 | |
| 101 | + /** |
|
| 102 | + * @param string $field |
|
| 103 | + */ |
|
| 101 | 104 | public function set($field, $value) |
| 102 | 105 | { |
| 103 | 106 | if ($field === 'author_types' && !is_array($value)) { |
@@ -519,6 +519,9 @@ discard block |
||
| 519 | 519 | return self::__OK__; |
| 520 | 520 | } |
| 521 | 521 | |
| 522 | + /** |
|
| 523 | + * @param integer $entry_id |
|
| 524 | + */ |
|
| 522 | 525 | public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null) |
| 523 | 526 | { |
| 524 | 527 | $status = self::__OK__; |
@@ -696,6 +699,10 @@ discard block |
||
| 696 | 699 | Filtering: |
| 697 | 700 | -------------------------------------------------------------------------*/ |
| 698 | 701 | |
| 702 | + /** |
|
| 703 | + * @param string $joins |
|
| 704 | + * @param string $where |
|
| 705 | + */ |
|
| 699 | 706 | public function buildDSRetrievalSQL($data, &$joins, &$where, $andOperation = false) |
| 700 | 707 | { |
| 701 | 708 | if (self::isFilterRegex($data[0])) { |