#11652 [HttpKernel] Remove unused method Kernel::isClassInActiveBundle

This commit is contained in:
Philipp Wahala 2014-09-06 18:49:23 +02:00 committed by Fabien Potencier
parent 784df79956
commit 86873f29f8
3 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,7 @@ CHANGELOG
-----
* deprecated `Symfony\Component\HttpKernel\EventListener\ErrorsLoggerListener`, use `Symfony\Component\HttpKernel\EventListener\DebugHandlersListener` instead
* deprecated unused method `Symfony\Component\HttpKernel\Kernel::isClassInActiveBundle` and `Symfony\Component\HttpKernel\KernelInterface::isClassInActiveBundle`
2.5.0
-----

View File

@ -209,6 +209,8 @@ abstract class Kernel implements KernelInterface, TerminableInterface
* {@inheritdoc}
*
* @api
*
* @deprecated Deprecated since version 2.6, to be removed in 3.0.
*/
public function isClassInActiveBundle($class)
{

View File

@ -77,6 +77,8 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
* @return bool true if the class belongs to an active bundle, false otherwise
*
* @api
*
* @deprecated Deprecated since version 2.6, to be removed in 3.0.
*/
public function isClassInActiveBundle($class);