We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea0ae8 commit 39704ceCopy full SHA for 39704ce
Neos.Flow/Classes/Http/UploadedFile.php
@@ -173,13 +173,14 @@ public function getStream()
173
* @see http://php.net/is_uploaded_file
174
* @see http://php.net/move_uploaded_file
175
* @param string $targetPath Path to which to move the uploaded file.
176
+ * @return void
177
* @throws RuntimeException if the upload was not successful.
178
* @throws InvalidArgumentException if the $path specified is invalid.
179
* @throws RuntimeException on any error during the move operation, or on
180
* the second or subsequent call to the method.
181
* @api PSR-7
182
*/
- public function moveTo(string $targetPath): void
183
+ public function moveTo($targetPath)
184
{
185
$this->throwExceptionIfNotAccessible();
186
0 commit comments