Re-dump autoloader and composer.lock

This commit is contained in:
Stephen Abello
2025-09-18 10:26:38 +02:00
parent 7e515e7216
commit edbe4974ac
613 changed files with 5661 additions and 4259 deletions

View File

@@ -105,7 +105,7 @@ class ProfilerController
}
if (!$profile->hasCollector($panel)) {
throw new NotFoundHttpException(sprintf('Panel "%s" is not available for token "%s".', $panel, $token));
throw new NotFoundHttpException(\sprintf('Panel "%s" is not available for token "%s".', $panel, $token));
}
return $this->renderWithCspNonces($request, $this->getTemplateManager()->getName($profile, $panel), [
@@ -343,12 +343,12 @@ class ProfilerController
{
$this->denyAccessIfProfilerDisabled();
if ('JetBrainsMono' !== $fontName) {
throw new NotFoundHttpException(sprintf('Font file "%s.woff2" not found.', $fontName));
throw new NotFoundHttpException(\sprintf('Font file "%s.woff2" not found.', $fontName));
}
$fontFile = \dirname(__DIR__).'/Resources/fonts/'.$fontName.'.woff2';
if (!is_file($fontFile) || !is_readable($fontFile)) {
throw new NotFoundHttpException(sprintf('Cannot read font file "%s".', $fontFile));
throw new NotFoundHttpException(\sprintf('Cannot read font file "%s".', $fontFile));
}
$this->profiler?->disable();
@@ -375,7 +375,7 @@ class ProfilerController
$filename = $this->baseDir.\DIRECTORY_SEPARATOR.$file;
if (preg_match("'(^|[/\\\\])\.'", $file) || !is_readable($filename)) {
throw new NotFoundHttpException(sprintf('The file "%s" cannot be opened.', $file));
throw new NotFoundHttpException(\sprintf('The file "%s" cannot be opened.', $file));
}
return $this->renderWithCspNonces($request, '@WebProfiler/Profiler/open.html.twig', [