This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel/KernelInterface.php

159 lines
4.0 KiB
PHP
Raw Normal View History

2011-01-25 16:07:37 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
2011-01-25 16:07:37 +00:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpKernel;
2018-07-26 10:03:18 +01:00
use Symfony\Component\Config\Loader\LoaderInterface;
2011-01-25 16:07:37 +00:00
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
/**
* The Kernel is the heart of the Symfony system.
*
* It manages an environment made of application kernel and bundles.
2011-01-25 16:07:37 +00:00
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @method string getProjectDir() Gets the project dir (path of the project's composer file) - not defining it is deprecated since Symfony 4.2
2011-01-25 16:07:37 +00:00
*/
2019-02-17 14:15:12 +00:00
interface KernelInterface extends HttpKernelInterface
2011-01-25 16:07:37 +00:00
{
/**
* Returns an array of bundles to register.
2011-01-25 16:07:37 +00:00
*
* @return iterable|BundleInterface[] An iterable of bundle instances
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function registerBundles();
2011-01-25 16:07:37 +00:00
/**
* Loads the container configuration.
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function registerContainerConfiguration(LoaderInterface $loader);
2011-01-25 16:07:37 +00:00
/**
* Boots the current kernel.
*/
2012-07-09 13:50:58 +01:00
public function boot();
2011-01-25 16:07:37 +00:00
/**
* Shutdowns the kernel.
*
* This method is mainly useful when doing functional testing.
*/
2012-07-09 13:50:58 +01:00
public function shutdown();
2011-01-25 16:07:37 +00:00
/**
* Gets the registered bundle instances.
*
* @return BundleInterface[] An array of registered bundle instances
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function getBundles();
2011-01-25 16:07:37 +00:00
/**
* Returns a bundle.
2011-01-25 16:07:37 +00:00
*
* @param string $name Bundle name
*
* @return BundleInterface A BundleInterface instance
2011-01-25 16:07:37 +00:00
*
* @throws \InvalidArgumentException when the bundle is not enabled
*/
public function getBundle($name);
2011-01-25 16:07:37 +00:00
/**
* Returns the file path for a given bundle resource.
2011-01-25 16:07:37 +00:00
*
* A Resource can be a file or a directory.
*
* The resource name must follow the following pattern:
*
* "@BundleName/path/to/a/file.something"
2011-01-25 16:07:37 +00:00
*
* where BundleName is the name of the bundle
* and the remaining part is the relative path in the bundle.
*
* @param string $name A resource name to locate
2011-01-25 16:07:37 +00:00
*
* @return string|array The absolute path of the resource or an array if $first is false (array return value is deprecated)
2011-01-25 16:07:37 +00:00
*
* @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*/);
2011-01-25 16:07:37 +00:00
/**
* Gets the name of the kernel.
*
* @return string The kernel name
*
* @deprecated since Symfony 4.2
*/
2012-07-09 13:50:58 +01:00
public function getName();
2011-01-25 16:07:37 +00:00
/**
* Gets the environment.
*
* @return string The current environment
*/
2012-07-09 13:50:58 +01:00
public function getEnvironment();
2011-01-25 16:07:37 +00:00
/**
* Checks if debug mode is enabled.
*
2014-11-30 13:33:44 +00:00
* @return bool true if debug mode is enabled, false otherwise
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function isDebug();
2011-01-25 16:07:37 +00:00
/**
2017-04-04 05:27:20 +01:00
* Gets the application root dir (path of the project's Kernel class).
2011-01-25 16:07:37 +00:00
*
2017-04-04 05:27:20 +01:00
* @return string The Kernel root dir
*
* @deprecated since Symfony 4.2
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function getRootDir();
2011-01-25 16:07:37 +00:00
/**
* Gets the current container.
*
* @return ContainerInterface
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function getContainer();
2011-01-25 16:07:37 +00:00
/**
* Gets the request start time (not available if debug is disabled).
*
* @return float The request start timestamp
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function getStartTime();
2011-01-25 16:07:37 +00:00
/**
* Gets the cache directory.
*
* @return string The cache directory
*/
2012-07-09 13:50:58 +01:00
public function getCacheDir();
2011-01-25 16:07:37 +00:00
/**
* Gets the log directory.
*
* @return string The log directory
*/
2012-07-09 13:50:58 +01:00
public function getLogDir();
/**
* Gets the charset of the application.
*
* @return string The charset
*/
2012-07-09 13:50:58 +01:00
public function getCharset();
2011-01-25 16:07:37 +00:00
}