Skip to content

Commit

Permalink
#11652 [HttpKernel] Remove unused method Kernel::isClassInActiveBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
hacfi authored and fabpot committed Sep 8, 2014
1 parent 784df79 commit 86873f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Symfony/Component/HttpKernel/CHANGELOG.md
Expand Up @@ -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
-----
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -209,6 +209,8 @@ public function getBundles()
* {@inheritdoc}
*
* @api
*
* @deprecated Deprecated since version 2.6, to be removed in 3.0.
*/
public function isClassInActiveBundle($class)
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/HttpKernel/KernelInterface.php
Expand Up @@ -77,6 +77,8 @@ public function getBundles();
* @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);

Expand Down

0 comments on commit 86873f2

Please sign in to comment.