Completed
Push — update-nimut ( f6102f...42e13e )
by Tomas Norre
38:58 queued 18:57
created
Classes/Api/CrawlerApi.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -297,7 +297,7 @@
 block discarded – undo
297 297
      * scheduled but have note been crawled yet.
298 298
      *
299 299
      * @param int $uid uid of the page
300
-     * @param bool $limit
300
+     * @param integer $limit
301 301
      *
302 302
      * @return array array with the crawl-history of a page => 0 : scheduled time , 1 : executed_time, 2 : set_id
303 303
      */
Please login to merge, or discard this patch.
Classes/Backend/BackendModule.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -830,9 +830,9 @@  discard block
 block discarded – undo
830 830
     }
831 831
 
832 832
     /**
833
-     * @param $currentActiveProcesses
834
-     * @param $maxActiveProcesses
835
-     * @param $isCrawlerEnabled
833
+     * @param integer $currentActiveProcesses
834
+     * @param integer $maxActiveProcesses
835
+     * @param boolean $isCrawlerEnabled
836 836
      * @return string
837 837
      * @throws \TYPO3\CMS\Backend\Routing\Exception\RouteNotFoundException
838 838
      */
@@ -926,6 +926,7 @@  discard block
 block discarded – undo
926 926
      *
927 927
      * @param  string  the message itself
928 928
      * @param  integer message level (-1 = success (default), 0 = info, 1 = notice, 2 = warning, 3 = error)
929
+     * @param string $message
929 930
      */
930 931
     protected function addMessage($message, $severity = FlashMessage::OK): void
931 932
     {
Please login to merge, or discard this patch.
Classes/Controller/CrawlerController.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -435,6 +435,10 @@  discard block
 block discarded – undo
435 435
      * @param    array        Array which is passed by reference and contains the an id per url to secure we will not crawl duplicates
436 436
      * @param    array        Array which will be filled with URLS for download if flag is set.
437 437
      * @param    array        Array of processing instructions
438
+     * @param integer $scheduledTime
439
+     * @param integer $reqMinute
440
+     * @param boolean $submitCrawlUrls
441
+     * @param boolean $downloadCrawlUrls
438 442
      * @return    string        List of URLs (meant for display in backend module)
439 443
      *
440 444
      */
@@ -554,7 +558,6 @@  discard block
 block discarded – undo
554 558
      * This methods returns an array of configurations.
555 559
      * And no urls!
556 560
      *
557
-     * @param integer $id Page ID
558 561
      * @return array
559 562
      */
560 563
     public function getUrlsForPageId($pageId)
@@ -881,7 +884,7 @@  discard block
 block discarded – undo
881 884
      * The number of URLs will be the multiplication of the number of parameter values for each key
882 885
      *
883 886
      * @param array $paramArray Output of expandParameters(): Array with keys (GET var names) and for each an array of values
884
-     * @param array $urls URLs accumulated in this array (for recursion)
887
+     * @param string[] $urls URLs accumulated in this array (for recursion)
885 888
      * @return array
886 889
      */
887 890
     public function compileUrls($paramArray, array $urls)
@@ -1555,6 +1558,7 @@  discard block
 block discarded – undo
1555 1558
      *
1556 1559
      * @param    array        Page row
1557 1560
      * @param    string        Page icon and title for row
1561
+     * @param string $pageTitleAndIcon
1558 1562
      * @return    string        HTML <tr> content (one or more)
1559 1563
      */
1560 1564
     public function drawURLs_addRowsForPage(array $pageRow, $pageTitleAndIcon)
@@ -1676,7 +1680,7 @@  discard block
 block discarded – undo
1676 1680
      * @param int $countInARun
1677 1681
      * @param int $sleepTime
1678 1682
      * @param int $sleepAfterFinish
1679
-     * @return string
1683
+     * @return integer
1680 1684
      */
1681 1685
     public function CLI_run($countInARun, $sleepTime, $sleepAfterFinish)
1682 1686
     {
Please login to merge, or discard this patch.
Classes/Hooks/IndexedSearchCrawlerHook.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -712,7 +712,7 @@
 block discarded – undo
712 712
      * Generate the unix time stamp for next visit.
713 713
      *
714 714
      * @param array $cfgRec Index configuration record
715
-     * @return int The next time stamp
715
+     * @return double The next time stamp
716 716
      */
717 717
     public function generateNextIndexingTime($cfgRec)
718 718
     {
Please login to merge, or discard this patch.