N°6934 - Symfony 6.4 - upgrade Symfony bundles to 6.4 (#580)

* Update Symfony lib to version ~6.4.0
* Update code missing return type
* Add an iTop general configuration entry to store application secret (Symfony mandatory parameter)
* Use dependency injection in ExceptionListener & UserProvider classes
This commit is contained in:
bdalsass
2023-12-05 13:56:56 +01:00
committed by GitHub
parent 863ab4560c
commit 27ce51ab07
1392 changed files with 44869 additions and 27799 deletions

View File

@@ -11,8 +11,8 @@
namespace Symfony\Component\HttpKernel\Bundle;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
/**
@@ -20,15 +20,19 @@ use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
*/
interface BundleInterface extends ContainerAwareInterface
interface BundleInterface
{
/**
* Boots the Bundle.
*
* @return void
*/
public function boot();
/**
* Shutdowns the Bundle.
*
* @return void
*/
public function shutdown();
@@ -36,36 +40,35 @@ interface BundleInterface extends ContainerAwareInterface
* Builds the bundle.
*
* It is only ever called once when the cache is empty.
*
* @return void
*/
public function build(ContainerBuilder $container);
/**
* Returns the container extension that should be implicitly loaded.
*
* @return ExtensionInterface|null
*/
public function getContainerExtension();
public function getContainerExtension(): ?ExtensionInterface;
/**
* Returns the bundle name (the class short name).
*
* @return string
*/
public function getName();
public function getName(): string;
/**
* Gets the Bundle namespace.
*
* @return string
*/
public function getNamespace();
public function getNamespace(): string;
/**
* Gets the Bundle directory path.
*
* The path should always be returned as a Unix path (with /).
*
* @return string
*/
public function getPath();
public function getPath(): string;
/**
* @return void
*/
public function setContainer(?ContainerInterface $container);
}