Upgrade framework

This commit is contained in:
2023-11-14 16:54:35 +01:00
parent 1648a5cd42
commit 4fcf6fffcc
10548 changed files with 693138 additions and 466698 deletions

View File

@@ -11,30 +11,28 @@
namespace Symfony\Component\HttpKernel;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
use Symfony\Component\Config\Loader\LoaderInterface;
/**
* The Kernel is the heart of the Symfony system.
*
* It manages an environment made of bundles.
* It manages an environment made of application kernel and bundles.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
interface KernelInterface extends HttpKernelInterface, \Serializable
interface KernelInterface extends HttpKernelInterface
{
/**
* Returns an array of bundles to register.
*
* @return BundleInterface[] An array of bundle instances
* @return iterable<mixed, BundleInterface>
*/
public function registerBundles();
public function registerBundles(): iterable;
/**
* Loads the container configuration.
*
* @param LoaderInterface $loader A LoaderInterface instance
*/
public function registerContainerConfiguration(LoaderInterface $loader);
@@ -53,24 +51,19 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
/**
* Gets the registered bundle instances.
*
* @return BundleInterface[] An array of registered bundle instances
* @return array<string, BundleInterface>
*/
public function getBundles();
public function getBundles(): array;
/**
* Returns a bundle and optionally its descendants by its name.
*
* @param string $name Bundle name
* @param bool $first Whether to return the first bundle only or together with its descendants
*
* @return BundleInterface|BundleInterface[] A BundleInterface instance or an array of BundleInterface instances if $first is false
* Returns a bundle.
*
* @throws \InvalidArgumentException when the bundle is not enabled
*/
public function getBundle($name, $first = true);
public function getBundle(string $name): BundleInterface;
/**
* Returns the file path for a given resource.
* Returns the file path for a given bundle resource.
*
* A Resource can be a file or a directory.
*
@@ -81,84 +74,60 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* where BundleName is the name of the bundle
* and the remaining part is the relative path in the bundle.
*
* If $dir is passed, and the first segment of the path is "Resources",
* this method will look for a file named:
*
* $dir/<BundleName>/path/without/Resources
*
* before looking in the bundle resource folder.
*
* @param string $name A resource name to locate
* @param string $dir A directory where to look for the resource first
* @param bool $first Whether to return the first path or paths for all matching bundles
*
* @return string|array The absolute path of the resource or an array if $first is false
*
* @throws \InvalidArgumentException if the file cannot be found or the name is not valid
* @throws \RuntimeException if the name contains invalid/unsafe characters
*/
public function locateResource($name, $dir = null, $first = true);
/**
* Gets the name of the kernel.
*
* @return string The kernel name
*/
public function getName();
public function locateResource(string $name): string;
/**
* Gets the environment.
*
* @return string The current environment
*/
public function getEnvironment();
public function getEnvironment(): string;
/**
* Checks if debug mode is enabled.
*
* @return bool true if debug mode is enabled, false otherwise
*/
public function isDebug();
public function isDebug(): bool;
/**
* Gets the application root dir (path of the project's Kernel class).
*
* @return string The Kernel root dir
* Gets the project dir (path of the project's composer file).
*/
public function getRootDir();
public function getProjectDir(): string;
/**
* Gets the current container.
*
* @return ContainerInterface A ContainerInterface instance
*/
public function getContainer();
public function getContainer(): ContainerInterface;
/**
* Gets the request start time (not available if debug is disabled).
*
* @return int The request start timestamp
*/
public function getStartTime();
public function getStartTime(): float;
/**
* Gets the cache directory.
*
* @return string The cache directory
* Since Symfony 5.2, the cache directory should be used for caches that are written at runtime.
* For caches and artifacts that can be warmed at compile-time and deployed as read-only,
* use the new "build directory" returned by the {@see getBuildDir()} method.
*/
public function getCacheDir();
public function getCacheDir(): string;
/**
* Returns the build directory.
*
* This directory should be used to store build artifacts, and can be read-only at runtime.
* Caches written at runtime should be stored in the "cache directory" ({@see KernelInterface::getCacheDir()}).
*/
public function getBuildDir(): string;
/**
* Gets the log directory.
*
* @return string The log directory
*/
public function getLogDir();
public function getLogDir(): string;
/**
* Gets the charset of the application.
*
* @return string The charset
*/
public function getCharset();
public function getCharset(): string;
}