Skip to content

Commit

Permalink
correction cs
Browse files Browse the repository at this point in the history
  • Loading branch information
BenoitLeveque committed Oct 15, 2024
1 parent 8f95944 commit 16dafad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Campaign/Importer/CampaignImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function import(
\DateTime $startDate,
\DateTime $endDate,
$filename,
$separator = ';'
$separator = ';',
) {
$campaign = new Campaign();
$campaign
Expand Down
2 changes: 1 addition & 1 deletion src/Command/BarometreImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class BarometreImportCommand extends Command
{
public function __construct(
private readonly CampaignRepository $campaignRepository,
private readonly CampaignImporter $campaignImporter
private readonly CampaignImporter $campaignImporter,
) {
parent::__construct();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Report/AbstractReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ abstract class AbstractReport implements ReportInterface

public function __construct(
protected int $minResult = 10,
protected array $childReports = []
protected array $childReports = [],
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/ReportManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function __construct(
Connection $connection,
FormInterface $form,
ReportCollection $reportCollection,
FilterCollection $filterCollection
FilterCollection $filterCollection,
) {
$this->connection = $connection;
$this->form = $form;
Expand Down

0 comments on commit 16dafad

Please sign in to comment.