Test Failed
Branch master (e0e8ab)
by Tymoteusz
23:10
created
typo3/sysext/core/Classes/Http/ServerRequest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      *
69 69
      * @param NULL|string $uri URI for the request, if any.
70 70
      * @param NULL|string $method HTTP method for the request, if any.
71
-     * @param string|resource|StreamInterface $body Message body, if any.
71
+     * @param string $body Message body, if any.
72 72
      * @param array $headers Headers for the message, if any.
73 73
      * @param array $serverParams Server parameters, typically from $_SERVER
74 74
      * @param array $uploadedFiles Upload file information, a tree of UploadedFiles
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
      * @see getAttributes()
327 327
      *
328 328
      * @param string $name The attribute name.
329
-     * @param mixed $value The value of the attribute.
329
+     * @param boolean $value The value of the attribute.
330 330
      * @return ServerRequest
331 331
      */
332 332
     public function withAttribute($name, $value)
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Imaging/IconFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     /**
80 80
      * @param ServerRequestInterface $request
81 81
      * @param ResponseInterface $response
82
-     * @return string
82
+     * @return ResponseInterface
83 83
      * @internal
84 84
      */
85 85
     public function processAjaxRequest(ServerRequestInterface $request, ResponseInterface $response)
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Log/Processor/IntrospectionProcessor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * Set the number of levels to be shift from the backtrace
55 55
      *
56 56
      * @param int $shiftBackTraceLevel Numbers of levels to shift
57
-     * @return \TYPO3\CMS\Core\Log\Writer\AbstractWriter
57
+     * @return IntrospectionProcessor
58 58
      */
59 59
     public function setShiftBackTraceLevel($shiftBackTraceLevel)
60 60
     {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * Set if the full backtrace should be added to the log or just the last item
67 67
      *
68 68
      * @param bool $appendFullBackTrace If the full backtrace should be added
69
-     * @return \TYPO3\CMS\Core\Log\Writer\AbstractWriter
69
+     * @return IntrospectionProcessor
70 70
      */
71 71
     public function setAppendFullBackTrace($appendFullBackTrace)
72 72
     {
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Package/Package.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
      * Returns contents of Composer manifest - or part there of if a key is given.
242 242
      *
243 243
      * @param string $key Optional. Only return the part of the manifest indexed by 'key'
244
-     * @return mixed|NULL
244
+     * @return string
245 245
      * @see json_decode for return values
246 246
      */
247 247
     public function getValueFromComposerManifest($key = null)
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Resource/Folder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -492,7 +492,7 @@
 block discarded – undo
492 492
     /**
493 493
      * Returns the role of this folder (if any). See FolderInterface::ROLE_* constants for possible values.
494 494
      *
495
-     * @return int
495
+     * @return string
496 496
      */
497 497
     public function getRole()
498 498
     {
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Resource/InaccessibleFolder.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * Deletes this folder from its storage. This also means that this object becomes useless.
165 165
      *
166 166
      * @param bool $deleteRecursively
167
-     * @return bool TRUE if deletion succeeded
167
+     * @return boolean|null TRUE if deletion succeeded
168 168
      */
169 169
     public function delete($deleteRecursively = true)
170 170
     {
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * Checks if a file exists in this folder
224 224
      *
225 225
      * @param string $name
226
-     * @return bool
226
+     * @return boolean|null
227 227
      */
228 228
     public function hasFile($name)
229 229
     {
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      * Checks if a folder exists in this folder.
235 235
      *
236 236
      * @param string $name
237
-     * @return bool
237
+     * @return boolean|null
238 238
      */
239 239
     public function hasFolder($name)
240 240
     {
Please login to merge, or discard this patch.
core/Classes/Resource/OnlineMedia/Helpers/OnlineMediaHelperInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
      * Constructor
27 27
      *
28 28
      * @param string $extension file extension bind to the OnlineMedia helper
29
+     * @return void
29 30
      */
30 31
     public function __construct($extension);
31 32
 
Please login to merge, or discard this patch.
core/Classes/Resource/OnlineMedia/Helpers/OnlineMediaHelperRegistry.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * Get helper class for given File
38 38
      *
39 39
      * @param File $file
40
-     * @return bool|OnlineMediaHelperInterface
40
+     * @return File
41 41
      */
42 42
     public function getOnlineMediaHelper(File $file)
43 43
     {
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Resource/Processing/ImageCropScaleMaskTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * are given, within the boundaries and don't conflict with each other.
43 43
      *
44 44
      * @param array $configuration
45
-     * @return bool
45
+     * @return boolean|null
46 46
      */
47 47
     protected function isValidConfiguration(array $configuration)
48 48
     {
Please login to merge, or discard this patch.