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 942d797 commit e40634bCopy full SHA for e40634b
tests/Unit/ValidatedDTOTest.php
@@ -461,7 +461,7 @@ public function __invoke()
461
});
462
463
it('validates that ValidateDTO cannot be instantiated with wrong mime type')
464
-->expect(function () {
465
- $uploadedFile = UploadedFile::fake()->create('document.pdf');
466
- ValidatedFileDTO::fromArray(['file' => $uploadedFile]);
467
-})->throws(ValidationException::class);
+ ->expect(function () {
+ $uploadedFile = UploadedFile::fake()->create('document.pdf');
+ ValidatedFileDTO::fromArray(['file' => $uploadedFile]);
+ })->throws(ValidationException::class);
0 commit comments