Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Dec 7, 2024
1 parent 79525d3 commit bf2ddff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Command/AddMassMediaCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$readHeaders = false;

while (!feof($fp)) {
$data = fgetcsv($fp, 0, $delimiter, $enclosure, (string) $escape);
$data = fgetcsv($fp, 0, $delimiter, $enclosure, $escape);

if (!\is_array($data)) {
continue;
Expand Down
2 changes: 1 addition & 1 deletion src/Filesystem/Replicate.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class Replicate implements Adapter, FileFactory, StreamFactory, MetadataSu
public function __construct(
private Adapter $primary,
private Adapter $secondary,
private LoggerInterface $logger = new NullLogger()
private LoggerInterface $logger = new NullLogger(),
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Metadata/AmazonMetadataBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ final class AmazonMetadataBuilder implements MetadataBuilderInterface
*/
public function __construct(
private array $settings,
private MimeTypesInterface $mimeTypes = new MimeTypes()
private MimeTypesInterface $mimeTypes = new MimeTypes(),
) {
}

Expand Down

0 comments on commit bf2ddff

Please sign in to comment.