Test Failed
Branch master (e0e8ab)
by Tymoteusz
23:10
created
typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -577,7 +577,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
typo3/sysext/indexed_search/Classes/Indexer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1404,7 +1404,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Configuration/Image/GraphicsMagickPreset.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/FolderStructure/NodeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/FolderStructure/StructureFacadeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/ContextService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/CoreVersionService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
typo3/sysext/linkvalidator/Classes/Report/LinkValidatorReport.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -477,7 +477,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
typo3/sysext/recordlist/Classes/LinkHandler/AbstractLinkHandler.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-     * @return array
77
+     * @return string[]
78 78
      */
79 79
     public function getLinkAttributes()
80 80
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.