Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
vendor/symfony/http-kernel
42
vendor/symfony/http-kernel/Kernel.php
vendored
42
vendor/symfony/http-kernel/Kernel.php
vendored
|
@ -40,8 +40,6 @@ use Symfony\Component\ClassLoader\ClassCollectionLoader;
|
|||
* It manages an environment made of bundles.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
abstract class Kernel implements KernelInterface, TerminableInterface
|
||||
{
|
||||
|
@ -60,11 +58,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
protected $startTime;
|
||||
protected $loadClassCache;
|
||||
|
||||
const VERSION = '2.7.5';
|
||||
const VERSION_ID = 20705;
|
||||
const VERSION = '2.7.6';
|
||||
const VERSION_ID = 20706;
|
||||
const MAJOR_VERSION = 2;
|
||||
const MINOR_VERSION = 7;
|
||||
const RELEASE_VERSION = 5;
|
||||
const RELEASE_VERSION = 6;
|
||||
const EXTRA_VERSION = '';
|
||||
|
||||
const END_OF_MAINTENANCE = '05/2018';
|
||||
|
@ -75,8 +73,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
*
|
||||
* @param string $environment The environment
|
||||
* @param bool $debug Whether to enable debugging or not
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function __construct($environment, $debug)
|
||||
{
|
||||
|
@ -118,8 +114,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* Boots the current kernel.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
|
@ -147,8 +141,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function terminate(Request $request, Response $response)
|
||||
{
|
||||
|
@ -163,8 +155,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function shutdown()
|
||||
{
|
||||
|
@ -184,8 +174,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
|
||||
{
|
||||
|
@ -208,8 +196,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getBundles()
|
||||
{
|
||||
|
@ -219,8 +205,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*
|
||||
* @deprecated since version 2.6, to be removed in 3.0.
|
||||
*/
|
||||
public function isClassInActiveBundle($class)
|
||||
|
@ -238,8 +222,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getBundle($name, $first = true)
|
||||
{
|
||||
|
@ -315,8 +297,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
|
@ -329,8 +309,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getEnvironment()
|
||||
{
|
||||
|
@ -339,8 +317,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function isDebug()
|
||||
{
|
||||
|
@ -349,8 +325,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getRootDir()
|
||||
{
|
||||
|
@ -364,8 +338,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getContainer()
|
||||
{
|
||||
|
@ -399,8 +371,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getStartTime()
|
||||
{
|
||||
|
@ -409,8 +379,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getCacheDir()
|
||||
{
|
||||
|
@ -419,8 +387,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getLogDir()
|
||||
{
|
||||
|
@ -429,8 +395,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface
|
|||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getCharset()
|
||||
{
|
||||
|
|
Reference in a new issue