@@ -577,7 +577,7 @@ |
||
577 | 577 | * Generate the unix time stamp for next visit. |
578 | 578 | * |
579 | 579 | * @param array $cfgRec Index configuration record |
580 | - * @return int The next time stamp |
|
580 | + * @return double The next time stamp |
|
581 | 581 | */ |
582 | 582 | public function generateNextIndexingTime($cfgRec) |
583 | 583 | { |
@@ -1404,7 +1404,7 @@ |
||
1404 | 1404 | * |
1405 | 1405 | * @param string $word Word to convert |
1406 | 1406 | * @param bool $returnRawMetaphoneValue If set, returns the raw metaphone value (not hashed) |
1407 | - * @return mixed Metaphone hash integer (or raw value, string) |
|
1407 | + * @return string Metaphone hash integer (or raw value, string) |
|
1408 | 1408 | */ |
1409 | 1409 | public function metaphone($word, $returnRawMetaphoneValue = false) |
1410 | 1410 | { |
@@ -50,7 +50,7 @@ |
||
50 | 50 | * Find executable in path, wrapper for specific ImageMagick/GraphicsMagick find methods. |
51 | 51 | * |
52 | 52 | * @param array $searchPaths |
53 | - * @return mixed |
|
53 | + * @return boolean |
|
54 | 54 | */ |
55 | 55 | protected function findExecutableInPath(array $searchPaths) |
56 | 56 | { |
@@ -24,6 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @param array $structure Structure |
26 | 26 | * @param NodeInterface $parent Parent |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function __construct(array $structure, NodeInterface $parent = null); |
29 | 30 |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * Constructor gets structure to work on |
24 | 24 | * |
25 | 25 | * @param RootNodeInterface $structure |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function __construct(RootNodeInterface $structure); |
28 | 29 |
@@ -58,7 +58,7 @@ |
||
58 | 58 | /** |
59 | 59 | * Is the install tool running as a standalone application? |
60 | 60 | * |
61 | - * @return bool |
|
61 | + * @return string |
|
62 | 62 | */ |
63 | 63 | public function getContextString() |
64 | 64 | { |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
59 | - * @return mixed |
|
59 | + * @return string |
|
60 | 60 | */ |
61 | 61 | public function getDownloadBaseUri() |
62 | 62 | { |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * Get youngest release version string. |
219 | 219 | * Returns same version number if no younger release was found. |
220 | 220 | * |
221 | - * @param array $types List of allowed types: development, release, security, regular |
|
221 | + * @param string[] $types List of allowed types: development, release, security, regular |
|
222 | 222 | * @throws Exception\CoreVersionServiceException |
223 | 223 | * @return string Youngest release, e.g., 7.2.0alpha3 or 7.3.0 |
224 | 224 | */ |
@@ -477,7 +477,7 @@ |
||
477 | 477 | * |
478 | 478 | * @param string $table Name of database table |
479 | 479 | * @param array $row Record row to be processed |
480 | - * @param array $brokenLinksItemTemplate Markup of the template to be used |
|
480 | + * @param string $brokenLinksItemTemplate Markup of the template to be used |
|
481 | 481 | * @return string HTML of the rendered row |
482 | 482 | */ |
483 | 483 | protected function renderTableRow($table, array $row, $brokenLinksItemTemplate) |
@@ -74,7 +74,7 @@ |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
77 | - * @return array |
|
77 | + * @return string[] |
|
78 | 78 | */ |
79 | 79 | public function getLinkAttributes() |
80 | 80 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * |
35 | 35 | * @var string[] |
36 | 36 | */ |
37 | - protected $linkAttributes = [ 'target', 'title', 'class', 'params', 'rel' ]; |
|
37 | + protected $linkAttributes = ['target', 'title', 'class', 'params', 'rel']; |
|
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @var bool |