Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue by Wim Leers: Move around/fix some documentation.

This commit is contained in:
Pantheon Automation 2015-11-17 13:42:33 -08:00 committed by Greg Anderson
parent 4afb23bbd3
commit 7784f4c23d
929 changed files with 19798 additions and 5304 deletions
vendor/symfony/http-kernel

View file

@ -21,8 +21,6 @@ use Symfony\Component\Config\Loader\LoaderInterface;
* It manages an environment made of bundles.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @api
*/
interface KernelInterface extends HttpKernelInterface, \Serializable
{
@ -30,8 +28,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Returns an array of bundles to register.
*
* @return BundleInterface[] An array of bundle instances.
*
* @api
*/
public function registerBundles();
@ -39,15 +35,11 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Loads the container configuration.
*
* @param LoaderInterface $loader A LoaderInterface instance
*
* @api
*/
public function registerContainerConfiguration(LoaderInterface $loader);
/**
* Boots the current kernel.
*
* @api
*/
public function boot();
@ -55,8 +47,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Shutdowns the kernel.
*
* This method is mainly useful when doing functional testing.
*
* @api
*/
public function shutdown();
@ -64,8 +54,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the registered bundle instances.
*
* @return BundleInterface[] An array of registered bundle instances
*
* @api
*/
public function getBundles();
@ -76,8 +64,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
*
* @return bool true if the class belongs to an active bundle, false otherwise
*
* @api
*
* @deprecated since version 2.6, to be removed in 3.0.
*/
public function isClassInActiveBundle($class);
@ -91,8 +77,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* @return BundleInterface|BundleInterface[] A BundleInterface instance or an array of BundleInterface instances if $first is false
*
* @throws \InvalidArgumentException when the bundle is not enabled
*
* @api
*/
public function getBundle($name, $first = true);
@ -123,8 +107,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
*
* @throws \InvalidArgumentException if the file cannot be found or the name is not valid
* @throws \RuntimeException if the name contains invalid/unsafe characters
*
* @api
*/
public function locateResource($name, $dir = null, $first = true);
@ -132,8 +114,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the name of the kernel.
*
* @return string The kernel name
*
* @api
*/
public function getName();
@ -141,8 +121,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the environment.
*
* @return string The current environment
*
* @api
*/
public function getEnvironment();
@ -150,8 +128,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Checks if debug mode is enabled.
*
* @return bool true if debug mode is enabled, false otherwise
*
* @api
*/
public function isDebug();
@ -159,8 +135,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the application root dir.
*
* @return string The application root dir
*
* @api
*/
public function getRootDir();
@ -168,8 +142,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the current container.
*
* @return ContainerInterface A ContainerInterface instance
*
* @api
*/
public function getContainer();
@ -177,8 +149,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the request start time (not available if debug is disabled).
*
* @return int The request start timestamp
*
* @api
*/
public function getStartTime();
@ -186,8 +156,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the cache directory.
*
* @return string The cache directory
*
* @api
*/
public function getCacheDir();
@ -195,8 +163,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the log directory.
*
* @return string The log directory
*
* @api
*/
public function getLogDir();
@ -204,8 +170,6 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* Gets the charset of the application.
*
* @return string The charset
*
* @api
*/
public function getCharset();
}