@@ -53,7 +53,7 @@ |
||
53 | 53 | * @param string $uri |
54 | 54 | * @param TypoScriptFrontendController $frontend |
55 | 55 | * |
56 | - * @return array |
|
56 | + * @return string[] |
|
57 | 57 | * |
58 | 58 | * @throws \Exception |
59 | 59 | * |
@@ -428,6 +428,10 @@ discard block |
||
428 | 428 | * @param array Array which is passed by reference and contains the an id per url to secure we will not crawl duplicates |
429 | 429 | * @param array Array which will be filled with URLS for download if flag is set. |
430 | 430 | * @param array Array of processing instructions |
431 | + * @param integer $scheduledTime |
|
432 | + * @param integer $reqMinute |
|
433 | + * @param boolean $submitCrawlUrls |
|
434 | + * @param boolean $downloadCrawlUrls |
|
431 | 435 | * @return string List of URLs (meant for display in backend module) |
432 | 436 | * |
433 | 437 | */ |
@@ -547,7 +551,6 @@ discard block |
||
547 | 551 | * This methods returns an array of configurations. |
548 | 552 | * And no urls! |
549 | 553 | * |
550 | - * @param integer $id Page ID |
|
551 | 554 | * @return array |
552 | 555 | */ |
553 | 556 | public function getUrlsForPageId($pageId) |
@@ -875,7 +878,7 @@ discard block |
||
875 | 878 | * The number of URLs will be the multiplication of the number of parameter values for each key |
876 | 879 | * |
877 | 880 | * @param array $paramArray Output of expandParameters(): Array with keys (GET var names) and for each an array of values |
878 | - * @param array $urls URLs accumulated in this array (for recursion) |
|
881 | + * @param string[] $urls URLs accumulated in this array (for recursion) |
|
879 | 882 | * @return array |
880 | 883 | */ |
881 | 884 | public function compileUrls($paramArray, array $urls) |
@@ -1561,6 +1564,7 @@ discard block |
||
1561 | 1564 | * |
1562 | 1565 | * @param array Page row |
1563 | 1566 | * @param string Page icon and title for row |
1567 | + * @param string $pageTitleAndIcon |
|
1564 | 1568 | * @return string HTML <tr> content (one or more) |
1565 | 1569 | */ |
1566 | 1570 | public function drawURLs_addRowsForPage(array $pageRow, $pageTitleAndIcon) |
@@ -1682,7 +1686,7 @@ discard block |
||
1682 | 1686 | * @param int $countInARun |
1683 | 1687 | * @param int $sleepTime |
1684 | 1688 | * @param int $sleepAfterFinish |
1685 | - * @return string |
|
1689 | + * @return integer |
|
1686 | 1690 | */ |
1687 | 1691 | public function CLI_run($countInARun, $sleepTime, $sleepAfterFinish) |
1688 | 1692 | { |
@@ -1983,6 +1987,7 @@ discard block |
||
1983 | 1987 | * Used to determine timeouts and to ensure a proper cleanup if there's a timeout |
1984 | 1988 | * |
1985 | 1989 | * @param string identification string for the process |
1990 | + * @param string $pid |
|
1986 | 1991 | * @return boolean determines if the process is still active / has resources |
1987 | 1992 | * |
1988 | 1993 | * TODO: Please consider moving this to Domain Model for Process or in ProcessRepository |