Skip to content

Commit

Permalink
[TASK] PHP CS Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ayacoo committed Oct 26, 2024
1 parent e56f3a1 commit 80a50d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Tests/Functional/Service/RedirectDemandServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ private function createSiteFinder(Site ...$sites): SiteFinder
{
$siteConfigurationMock = $this->createMock(SiteConfiguration::class);
$sitesArray = array_combine(
array_map(static function (Site $site) { return $site->getIdentifier(); }, $sites),
array_map(static function (Site $site) {
return $site->getIdentifier();
}, $sites),
$sites
);
$siteConfigurationMock->method('getAllExistingSites')->willReturn($sitesArray);
Expand Down

0 comments on commit 80a50d5

Please sign in to comment.