X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=vendor%2Fsymfony%2Ffinder%2FIterator%2FFilterIterator.php;h=c16dd8fa9e4a0b15fb2e4e57c8fda9401ffa62b8;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=3c3c3fbec0218c3ed7687d6b9df80f3af0b684e6;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/symfony/finder/Iterator/FilterIterator.php b/vendor/symfony/finder/Iterator/FilterIterator.php index 3c3c3fbec..c16dd8fa9 100644 --- a/vendor/symfony/finder/Iterator/FilterIterator.php +++ b/vendor/symfony/finder/Iterator/FilterIterator.php @@ -18,6 +18,8 @@ namespace Symfony\Component\Finder\Iterator; * @see https://bugs.php.net/68557 * * @author Alex Bogomazov + * + * @deprecated since 3.4, to be removed in 4.0. */ abstract class FilterIterator extends \FilterIterator { @@ -29,7 +31,7 @@ abstract class FilterIterator extends \FilterIterator */ public function rewind() { - if (PHP_VERSION_ID > 50607 || (PHP_VERSION_ID > 50523 && PHP_VERSION_ID < 50600)) { + if (\PHP_VERSION_ID > 50607 || (\PHP_VERSION_ID > 50523 && \PHP_VERSION_ID < 50600)) { parent::rewind(); return;