[Finder] Deprecate FilterIterator

This commit is contained in:
Maxime Steinhausser 2017-05-21 14:08:16 +02:00
parent 8308b32b9f
commit 946066cc29
5 changed files with 18 additions and 0 deletions

View File

@ -1,6 +1,13 @@
UPGRADE FROM 3.3 to 3.4 UPGRADE FROM 3.3 to 3.4
======================= =======================
Finder
------
* The `Symfony\Component\Finder\Iterator\FilterIterator` class has been
deprecated and will be removed in 4.0 as it used to fix a bug which existed
before version 5.5.23/5.6.7
Validator Validator
--------- ---------

View File

@ -145,6 +145,8 @@ Finder
------ ------
* The `ExceptionInterface` has been removed. * The `ExceptionInterface` has been removed.
* The `Symfony\Component\Finder\Iterator\FilterIterator` class has been
removed as it used to fix a bug which existed before version 5.5.23/5.6.7
Form Form
---- ----

View File

@ -1,6 +1,11 @@
CHANGELOG CHANGELOG
========= =========
3.4.0
-----
* deprecated `Symfony\Component\Finder\Iterator\FilterIterator`
3.3.0 3.3.0
----- -----

View File

@ -18,6 +18,8 @@ namespace Symfony\Component\Finder\Iterator;
* @see https://bugs.php.net/68557 * @see https://bugs.php.net/68557
* *
* @author Alex Bogomazov * @author Alex Bogomazov
*
* @deprecated since 3.4, to be removed in 4.0.
*/ */
abstract class FilterIterator extends \FilterIterator abstract class FilterIterator extends \FilterIterator
{ {

View File

@ -13,6 +13,8 @@ namespace Symfony\Component\Finder\Tests\Iterator;
/** /**
* @author Alex Bogomazov * @author Alex Bogomazov
*
* @group legacy
*/ */
class FilterIteratorTest extends RealIteratorTestCase class FilterIteratorTest extends RealIteratorTestCase
{ {