[HttpFoundation] fix phpdoc of UploadedFile

This commit is contained in:
Tobias Schultze 2016-04-01 13:54:44 +02:00
parent 9d45acc6a5
commit cbcac5632b
1 changed files with 7 additions and 7 deletions

View File

@ -50,7 +50,7 @@ class UploadedFile extends File
/** /**
* The file size provided by the uploader. * The file size provided by the uploader.
* *
* @var string * @var int|null
*/ */
private $size; private $size;
@ -75,12 +75,12 @@ class UploadedFile extends File
* *
* Calling any other method on an non-valid instance will cause an unpredictable result. * Calling any other method on an non-valid instance will cause an unpredictable result.
* *
* @param string $path The full temporary path to the file * @param string $path The full temporary path to the file
* @param string $originalName The original file name * @param string $originalName The original file name
* @param string $mimeType The type of the file as provided by PHP * @param string|null $mimeType The type of the file as provided by PHP; null defaults to application/octet-stream
* @param int $size The file size * @param int|null $size The file size
* @param int $error The error constant of the upload (one of PHP's UPLOAD_ERR_XXX constants) * @param int|null $error The error constant of the upload (one of PHP's UPLOAD_ERR_XXX constants); null defaults to UPLOAD_ERR_OK
* @param bool $test Whether the test mode is active * @param bool $test Whether the test mode is active
* *
* @throws FileException If file_uploads is disabled * @throws FileException If file_uploads is disabled
* @throws FileNotFoundException If the file does not exist * @throws FileNotFoundException If the file does not exist