remove getNamespace() and getXsdValidationBasePath() from ExtensionInterface

This commit is contained in:
Christian Flothmann
2025-10-06 20:03:36 +02:00
parent 1385c8c6b0
commit 5289310a65

View File

@@ -57,20 +57,4 @@ class WebProfilerExtension extends Extension
$container->getDefinition('debug.file_link_formatter')
->replaceArgument(3, new ServiceClosureArgument(new Reference('debug.file_link_formatter.url_format')));
}
/**
* @deprecated since Symfony 7.4, to be removed in Symfony 8.0 together with XML support.
*/
public function getXsdValidationBasePath(): string|false
{
return __DIR__.'/../Resources/config/schema';
}
/**
* @deprecated since Symfony 7.4, to be removed in Symfony 8.0 together with XML support.
*/
public function getNamespace(): string
{
return 'http://symfony.com/schema/dic/webprofiler';
}
}