Skip to content

Commit 7d8aec3

Browse files
Merge branch '6.3' into 6.4
* 6.3: (27 commits) [Filesystem] Follow symlinks when dumping files [Security] Add clock dependency to OidcTokenHandler [DependencyInjection] Escape `%` from parameter-like default values [SecurityBundle] add missing xsd definition for OIDC [FrameworkBundle] remove support for preloading ESM modules using headers Fix tests [SecurityBundle] Fix configuring OIDC user info token handler client [Notifier] Fix ContactEveryoneOptions CS fix [FrameworkBundle][PhpUnitBridge] Configure doctrine/deprecations as expected [HttpKernel] Fix default value ignored with pinned resolvers Fix unable to use asset mapper with CSP Fix Typos Ignore definitions bearing the `container.excluded` tag Bump Symfony version to 6.3.0 Update VERSION for 6.3.0-RC2 Update CHANGELOG for 6.3.0-RC2 Bump Symfony version to 6.2.12 Update VERSION for 6.2.11 Update CHANGELOG for 6.2.11 ...
2 parents 9b8eaa0 + 67a33c7 commit 7d8aec3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Extension/ImportMapRuntime.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public function __construct(private readonly ImportMapRenderer $importMapRendere
2222
{
2323
}
2424

25-
public function importmap(?string $entryPoint = 'app'): string
25+
public function importmap(?string $entryPoint = 'app', array $attributes = []): string
2626
{
27-
return $this->importMapRenderer->render($entryPoint);
27+
return $this->importMapRenderer->render($entryPoint, $attributes);
2828
}
2929
}

0 commit comments

Comments
 (0)