| exception |
RuntimeException {#615
#message: "Could not find an asset mapper path that points to the "swup" controller in package "symfony/ux-swup", defined in controllers.json."
#code: 0
#file: "/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php"
#line: 137
trace: {
/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:137 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->loadUxControllers(): array …
› if (!$asset) {
› throw new \RuntimeException(sprintf('Could not find an asset mapper path that points to the "%s" controller in package "%s", defined in controllers.json.', $controllerName, $packageMetadata->packageName));
› }
}
/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:48 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->getControllersMap(): array …
› return array_merge(
› $this->loadUxControllers(),
› $this->loadCustomControllers(),
}
/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/StimulusLoaderJavaScriptCompiler.php:52 {
Symfony\UX\StimulusBundle\AssetMapper\StimulusLoaderJavaScriptCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
›
› foreach ($this->controllersMapGenerator->getControllersMap() as $name => $mappedControllerAsset) {
› // @legacy: backwards compatibility with Symfony 6.3
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#111 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:108 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = file_get_contents($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:49 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:42 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:62 {
Symfony\Component\AssetMapper\AssetMapper->getAssetFromSourcePath(string $sourcePath): MappedAsset …
›
› return $this->getAsset($logicalPath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/controllers.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:204 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->findAssetForRelativeImport(string $importedModule, MappedAsset $asset, AssetMapperInterface $assetMapper): MappedAsset …
› try {
› $dependentAsset = $assetMapper->getAssetFromSourcePath($resolvedSourcePath);
› } catch (CircularAssetsException $exception) {
arguments: {
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/controllers.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:88 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure} …
› } else {
› $dependentAsset = $this->findAssetForRelativeImport($importedModule, $asset, $assetMapper);
› }
arguments: {
$importedModule: "./controllers.js"
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#111 …}
}
}
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure}() {}
/home/dot/public_html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:118 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
› return str_replace($importedModule, $relativeImportPath, $fullImportString);
› }, $content, -1, $count, \PREG_OFFSET_CAPTURE) ?? throw new RuntimeException(sprintf('Failed to compile JavaScript import paths in "%s". Error: "%s".', $asset->sourcePath, preg_last_error_msg()));
› }
arguments: {
$pattern: """
/\n
^(?:\/\/.*) # Lines that start with comments\n
|\n
(?:\n
'(?:[^'\\\n]|\\.)*+' # Strings enclosed in single quotes\n
|\n
"(?:[^"\\\n]|\\.)*+" # Strings enclosed in double quotes\n
)\n
|\n
(?: # Import statements (script captured)\n
import\s*\n
(?:\n
(?:\*\s*as\s+\w+|\s+[\w\s{},*]+)\n
\s*from\s*\n
)?\n
|\n
\bimport\(\n
)\n
\s*['"`](\.\/[^'"`\n]++|(\.\.\/)*+[^'"`\n]++)['"`]\s*[;\)]\n
?\n
/mx
"""
$callback: Closure($matches) {#637 …}
$subject: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$limit: -1
&$count: null
$flags: 256
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#111 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:108 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = file_get_contents($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:49 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:42 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:47 {
Symfony\Component\AssetMapper\AssetMapper->allAssets(): iterable …
› foreach ($this->mapperRepository->all() as $logicalPath => $filePath) {
› $asset = $this->getAsset($logicalPath);
› if (null === $asset) {
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:193 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->findAssetFromCache(string $pathInfo): MappedAsset …
› $asset = null;
› foreach ($this->assetMapper->allAssets() as $assetCandidate) {
› if ($pathInfo === $assetCandidate->publicPath) {
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:127 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->onKernelRequest(RequestEvent $event): void …
›
› $asset = $this->findAssetFromCache($pathInfo);
›
arguments: {
$pathInfo: "/assets/svg/brands/google-icon.svg"
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
...: {
"kernel.request"
Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#515 …}
}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php:220 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
› }
› $listener($event, $eventName, $this);
› }
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
$dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#515 …}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
arguments: {
$listeners: [ …18]
$eventName: "kernel.request"
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
}
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:157 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
}
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
$type: 1
}
}
/home/dot/public_html/vendor/symfony/http-kernel/Kernel.php:197 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
$type: 1
$catch: true
}
}
/home/dot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
}
}
/home/dot/public_html/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/dot/public_html/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/dot/public_html/vendor/autoload_runtime.php"
}
}
}
} |
| logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#523
-records: [
15 => [
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.266+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.266+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.266+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.266+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.266+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.266+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.269+00:00"
"message" => "Uncaught PHP Exception RuntimeException: "Could not find an asset mapper path that points to the "swup" controller in package "symfony/ux-swup", defined in controllers.json." at ControllersMapGenerator.php line 137"
"priority" => 500
"priorityName" => "CRITICAL"
"context" => [
"exception" => RuntimeException {#615
#message: "Could not find an asset mapper path that points to the "swup" controller in package "symfony/ux-swup", defined in controllers.json."
#code: 0
#file: "/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php"
#line: 137
trace: {
/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:137 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->loadUxControllers(): array …
› if (!$asset) {
› throw new \RuntimeException(sprintf('Could not find an asset mapper path that points to the "%s" controller in package "%s", defined in controllers.json.', $controllerName, $packageMetadata->packageName));
› }
}
/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:48 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->getControllersMap(): array …
› return array_merge(
› $this->loadUxControllers(),
› $this->loadCustomControllers(),
}
/home/dot/public_html/vendor/symfony/stimulus-bundle/src/AssetMapper/StimulusLoaderJavaScriptCompiler.php:52 {
Symfony\UX\StimulusBundle\AssetMapper\StimulusLoaderJavaScriptCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
›
› foreach ($this->controllersMapGenerator->getControllersMap() as $name => $mappedControllerAsset) {
› // @legacy: backwards compatibility with Symfony 6.3
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#111 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:108 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = file_get_contents($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:49 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:42 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:62 {
Symfony\Component\AssetMapper\AssetMapper->getAssetFromSourcePath(string $sourcePath): MappedAsset …
›
› return $this->getAsset($logicalPath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/controllers.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:204 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->findAssetForRelativeImport(string $importedModule, MappedAsset $asset, AssetMapperInterface $assetMapper): MappedAsset …
› try {
› $dependentAsset = $assetMapper->getAssetFromSourcePath($resolvedSourcePath);
› } catch (CircularAssetsException $exception) {
arguments: {
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/controllers.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:88 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure} …
› } else {
› $dependentAsset = $this->findAssetForRelativeImport($importedModule, $asset, $assetMapper);
› }
arguments: {
$importedModule: "./controllers.js"
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#111 …}
}
}
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure}() {}
/home/dot/public_html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:118 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
› return str_replace($importedModule, $relativeImportPath, $fullImportString);
› }, $content, -1, $count, \PREG_OFFSET_CAPTURE) ?? throw new RuntimeException(sprintf('Failed to compile JavaScript import paths in "%s". Error: "%s".', $asset->sourcePath, preg_last_error_msg()));
› }
arguments: {
$pattern: """
/\n
^(?:\/\/.*) # Lines that start with comments\n
|\n
(?:\n
'(?:[^'\\\n]|\\.)*+' # Strings enclosed in single quotes\n
|\n
"(?:[^"\\\n]|\\.)*+" # Strings enclosed in double quotes\n
)\n
|\n
(?: # Import statements (script captured)\n
import\s*\n
(?:\n
(?:\*\s*as\s+\w+|\s+[\w\s{},*]+)\n
\s*from\s*\n
)?\n
|\n
\bimport\(\n
)\n
\s*['"`](\.\/[^'"`\n]++|(\.\.\/)*+[^'"`\n]++)['"`]\s*[;\)]\n
?\n
/mx
"""
$callback: Closure($matches) {#637 …}
$subject: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$limit: -1
&$count: null
$flags: 256
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#111 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:108 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = file_get_contents($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
async loadLazyController(name) {\n
if (canRegisterController(name, this.application)) {\n
if (this.lazyControllers[name] === undefined) {\n
return;\n
}\n
const controllerModule = await this.lazyControllers[name]();\n
registerController(name, controllerModule.default, this.application);\n
}\n
}\n
lazyLoadNewControllers(element) {\n
new MutationObserver((mutationsList) => {\n
for (const { attributeName, target, type } of mutationsList) {\n
switch (type) {\n
case 'attributes': {\n
if (attributeName === controllerAttribute &&\n
target.getAttribute(controllerAttribute)) {\n
extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
break;\n
}\n
case 'childList': {\n
this.lazyLoadExistingControllers(target);\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
queryControllerNamesWithin(element) {\n
return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.map(extractControllerNamesFrom)\n
.flat();\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:49 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#593 …}
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:42 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/dot/public_html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapper.php:47 {
Symfony\Component\AssetMapper\AssetMapper->allAssets(): iterable …
› foreach ($this->mapperRepository->all() as $logicalPath => $filePath) {
› $asset = $this->getAsset($logicalPath);
› if (null === $asset) {
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
}
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:193 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->findAssetFromCache(string $pathInfo): MappedAsset …
› $asset = null;
› foreach ($this->assetMapper->allAssets() as $assetCandidate) {
› if ($pathInfo === $assetCandidate->publicPath) {
}
/home/dot/public_html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:127 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->onKernelRequest(RequestEvent $event): void …
›
› $asset = $this->findAssetFromCache($pathInfo);
›
arguments: {
$pathInfo: "/assets/svg/brands/google-icon.svg"
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
...: {
"kernel.request"
Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#515 …}
}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php:220 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
› }
› $listener($event, $eventName, $this);
› }
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
$dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#515 …}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
arguments: {
$listeners: [ …18]
$eventName: "kernel.request"
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
}
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:157 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
}
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
$type: 1
}
}
/home/dot/public_html/vendor/symfony/http-kernel/Kernel.php:197 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
$type: 1
$catch: true
}
}
/home/dot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
}
}
/home/dot/public_html/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/dot/public_html/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/dot/public_html/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "BabDev\PagerfantaBundle\EventListener\ConvertNotValidCurrentPageToNotFoundListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "BabDev\PagerfantaBundle\EventListener\ConvertNotValidMaxPerPageToNotFoundListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "ApiPlatform\Symfony\Validator\EventListener\ValidationExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "ApiPlatform\Symfony\EventListener\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Listener "{listener}" stopped propagation of the event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "ApiPlatform\Symfony\EventListener\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Listener "{listener}" was not called for event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.319+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
913 => [
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.272+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.273+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.273+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.273+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.280+00:00"
"message" => "User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "8.0.31" instead of "8". (AbstractMySQLDriver.php:68 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm)"
"priority" => 200
"priorityName" => "INFO"
"context" => [
"exception" => ErrorException {#1031
#message: "User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "8.0.31" instead of "8". (AbstractMySQLDriver.php:68 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm)"
#code: 0
#file: "/home/dot/public_html/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/Deprecation.php"
#line: 210
#severity: E_USER_DEPRECATED
trace: {
/home/dot/public_html/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/Deprecation.php:210 {
Doctrine\Deprecations\Deprecation::delegateTriggerToBackend(string $message, array $backtrace, string $link, string $package): void …
›
› @trigger_error($message, E_USER_DEPRECATED);
› }
}
/home/dot/public_html/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/Deprecation.php:108 {
Doctrine\Deprecations\Deprecation::trigger(string $package, string $link, string $message, ...$args): void …
›
› self::delegateTriggerToBackend($message, $backtrace, $link, $package);
› }
}
/home/dot/public_html/vendor/doctrine/dbal/src/Driver/AbstractMySQLDriver.php:68 {
Doctrine\DBAL\Driver\AbstractMySQLDriver->createDatabasePlatformForVersion($version) …
› 'Version detection logic for MySQL will change in DBAL 4. '
› . 'Please specify the version as the server reports it, e.g. "8.0.31" instead of "8".',
› );
}
/home/dot/public_html/vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:68 {
Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->createDatabasePlatformForVersion($version) …
› if ($this->wrappedDriver instanceof VersionAwarePlatformDriver) {
› return $this->wrappedDriver->createDatabasePlatformForVersion($version);
› }
}
/home/dot/public_html/vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:68 {
Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->createDatabasePlatformForVersion($version) …
› if ($this->wrappedDriver instanceof VersionAwarePlatformDriver) {
› return $this->wrappedDriver->createDatabasePlatformForVersion($version);
› }
}
/home/dot/public_html/vendor/doctrine/dbal/src/Connection.php:415 {
Doctrine\DBAL\Connection->detectDatabasePlatform(): AbstractPlatform …
›
› return $this->_driver->createDatabasePlatformForVersion($version);
› }
}
/home/dot/public_html/vendor/doctrine/dbal/src/Connection.php:317 {
Doctrine\DBAL\Connection->getDatabasePlatform() …
› if ($this->platform === null) {
› $this->platform = $this->detectDatabasePlatform();
› $this->platform->setEventManager($this->_eventManager);
}
/home/dot/public_html/vendor/doctrine/dbal/src/Connection.php:1315 {
Doctrine\DBAL\Connection->setNestTransactionsWithSavepoints($nestTransactionsWithSavepoints) …
›
› if (! $this->getDatabasePlatform()->supportsSavepoints()) {
› throw ConnectionException::savepointsNotSupported();
}
/home/dot/public_html/var/cache/dev/ContainerMrxUxcP/App_KernelDevDebugContainer.php:1056 {
ContainerMrxUxcP\App_KernelDevDebugContainer::getDoctrine_Dbal_DefaultConnectionService($container) …
›
› $instance->setNestTransactionsWithSavepoints(true);
›
}
/home/dot/public_html/var/cache/dev/ContainerMrxUxcP/App_KernelDevDebugContainer.php:1259 {
ContainerMrxUxcP\App_KernelDevDebugContainer::getDoctrine_Orm_DefaultEntityManagerService($container, $lazyLoad = true) …
›
› $instance = ($lazyLoad->__construct(($container->services['doctrine.dbal.default_connection'] ?? self::getDoctrine_Dbal_DefaultConnectionService($container)), $a, ($container->privates['doctrine.dbal.default_connection.event_manager'] ?? self::getDoctrine_Dbal_DefaultConnection_EventManagerService($container))) && false ?: $lazyLoad);
›
}
/home/dot/public_html/var/cache/dev/ContainerMrxUxcP/App_KernelDevDebugContainer.php:1069 {
ContainerMrxUxcP\App_KernelDevDebugContainer::ContainerMrxUxcP\{closure} …
› if (true === $lazyLoad) {
› return $container->services['doctrine.orm.default_entity_manager'] = $container->createProxy('EntityManagerGhostEbeb667', static fn () => \EntityManagerGhostEbeb667::createLazyGhost(static fn ($proxy) => self::getDoctrine_Orm_DefaultEntityManagerService($container, $proxy)));
› }
}
/home/dot/public_html/vendor/symfony/var-exporter/Internal/LazyObjectState.php:100 {
Symfony\Component\VarExporter\Internal\LazyObjectState->initialize($instance, $propertyName, $propertyScope) …
›
› ($this->initializer)($instance);
› } catch (\Throwable $e) {
}
/home/dot/public_html/vendor/symfony/var-exporter/LazyGhostTrait.php:176 {
ContainerMrxUxcP\EntityManagerGhostEbeb667->__get&($name): mixed …
›
› if ($property?->isInitialized($this) ?? LazyObjectState::STATUS_UNINITIALIZED_PARTIAL !== $state->initialize($this, $name, $readonlyScope ?? $scope)) {
› goto get_in_scope;
}
/home/dot/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:207 {
Doctrine\ORM\EntityManager->getMetadataFactory() …
› {
› return $this->metadataFactory;
› }
}
/home/dot/public_html/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:189 {
Doctrine\Persistence\AbstractManagerRegistry->getManagerForClass(string $class) …
›
› if (! $manager->getMetadataFactory()->isTransient($class)) {
› return $manager;
}
/home/dot/public_html/vendor/symfony/doctrine-bridge/ArgumentResolver/EntityValueResolver.php:85 {
Symfony\Bridge\Doctrine\ArgumentResolver\EntityValueResolver->getManager(?string $name, string $class): ObjectManager …
› if (null === $name) {
› return $this->registry->getManagerForClass($class);
› }
}
/home/dot/public_html/vendor/symfony/doctrine-bridge/ArgumentResolver/EntityValueResolver.php:53 {
Symfony\Bridge\Doctrine\ArgumentResolver\EntityValueResolver->resolve(Request $request, ArgumentMetadata $argument): array …
› }
› if (!$manager = $this->getManager($options->objectManager, $options->class)) {
› return [];
}
/home/dot/public_html/vendor/symfony/http-kernel/Controller/ArgumentResolver/TraceableValueResolver.php:60 {
Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver->resolve(Request $request, ArgumentMetadata $argument): iterable …
›
› yield from $this->inner->resolve($request, $argument);
›
}
/home/dot/public_html/vendor/symfony/http-kernel/Controller/ArgumentResolver.php:91 {
Symfony\Component\HttpKernel\Controller\ArgumentResolver->getArguments(Request $request, callable $controller, ReflectionFunctionAbstract $reflector = null): array …
› $count = 0;
› foreach ($resolver->resolve($request, $metadata) as $argument) {
› ++$count;
}
/home/dot/public_html/vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php:40 {
Symfony\Component\HttpKernel\Controller\TraceableArgumentResolver->getArguments(Request $request, callable $controller): array …
› try {
› return $this->resolver->getArguments($request, $controller, $reflector);
› } finally {
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:173 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› // controller arguments
› $arguments = $this->argumentResolver->getArguments($request, $controller, $event->getControllerReflector());
›
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
$type: 1
}
}
/home/dot/public_html/vendor/symfony/http-kernel/EventListener/ErrorListener.php:117 {
Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(ExceptionEvent $event) …
› try {
› $response = $event->getKernel()->handle($request, HttpKernelInterface::SUB_REQUEST, false);
› } catch (\Exception $e) {
}
/home/dot/public_html/vendor/api-platform/core/src/Symfony/EventListener/ExceptionListener.php:40 {
ApiPlatform\Symfony\EventListener\ExceptionListener->onKernelException(ExceptionEvent $event): void …
›
› $this->errorListener->onKernelException($event);
› }
}
/home/dot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
...: {
"kernel.request"
Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#515 …}
}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php:220 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
› }
› $listener($event, $eventName, $this);
› }
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
$dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#515 …}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
arguments: {
$listeners: [ …18]
$eventName: "kernel.request"
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
}
}
/home/dot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#399 …}
$eventName: "kernel.request"
}
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:239 {
Symfony\Component\HttpKernel\HttpKernel->handleThrowable(Throwable $e, Request $request, int $type): Response …
› $event = new ExceptionEvent($this, $request, $type, $e);
› $this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);
›
}
/home/dot/public_html/vendor/symfony/http-kernel/HttpKernel.php:91 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
›
› return $response = $this->handleThrowable($e, $request, $type);
› } finally {
}
/home/dot/public_html/vendor/symfony/http-kernel/Kernel.php:197 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
$type: 1
$catch: true
}
}
/home/dot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#15 …}
}
}
/home/dot/public_html/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/dot/public_html/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/dot/public_html/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "deprecation"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.298+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.298+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.298+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerMrxUxcP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.298+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1762616176
"timestamp_rfc3339" => "2025-11-08T15:36:16.318+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
]
-errorCount: [
15 => 1
913 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#522 …}
} |