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 1a21935 commit 201aeb5Copy full SHA for 201aeb5
src/UploadedFileIntegrationTest.php
@@ -102,7 +102,7 @@ public function testGetSize()
102
103
$file = $this->createSubject();
104
$size = $file->getSize();
105
- if ($size) {
+ if (false !== $size) {
106
// @TODO remove when package require phpunit 9.1
107
if (function_exists('PHPUnit\Framework\assertMatchesRegularExpression')) {
108
$this->assertMatchesRegularExpression('|^[0-9]+$|', (string) $size);
0 commit comments