Skip to content

Commit

Permalink
Changed to single-line array to pass cs.
Browse files Browse the repository at this point in the history
  • Loading branch information
leobedrosian committed Sep 24, 2024
1 parent 8966823 commit c45a82e
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions tests/PSR7/Validators/BodyValidator/MultipartValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -476,22 +476,14 @@ public function dataProviderMultipartServerRequestGreen(): array
'/multipart/files/collections',
[
'files' => [
[
'caption' => 'Some caption',
],
[
'caption' => 'Some caption',
],
['caption' => 'Some caption'],
['caption' => 'Some caption'],
],
],
[
'files' => [
[
'file' => new UploadedFile($imagePath, $imageSize, 0),
],
[
'file' => new UploadedFile($imagePath, $imageSize, 0),
],
['file' => new UploadedFile($imagePath, $imageSize, 0)],
['file' => new UploadedFile($imagePath, $imageSize, 0)],
],
],
],
Expand Down

0 comments on commit c45a82e

Please sign in to comment.