@@ -68,7 +68,7 @@ discard block |
||
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 |
||
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) |
@@ -79,7 +79,7 @@ |
||
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) |
@@ -54,7 +54,7 @@ discard block |
||
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 |
||
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 | { |
@@ -241,7 +241,7 @@ |
||
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) |
@@ -492,7 +492,7 @@ |
||
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 | { |
@@ -164,7 +164,7 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -26,6 +26,7 @@ |
||
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 |
@@ -37,7 +37,7 @@ |
||
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 | { |
@@ -42,7 +42,7 @@ |
||
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 | { |