Skip to content

Commit dc5cec6

Browse files
committed
Corrected version check method.
1 parent de24c81 commit dc5cec6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Symfony/Component/Finder/Iterator/FilterIterator.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ abstract class FilterIterator extends \FilterIterator
2929
*/
3030
public function rewind()
3131
{
32-
if (version_compare(PHP_VERSION, '5.5.23', '<')
33-
or (version_compare(PHP_VERSION, '5.6.0', '>=') and version_compare(PHP_VERSION, '5.6.7', '<'))) {
32+
if (PHP_VERSION_ID < 50523 || PHP_VERSION_ID >= 50600 && PHP_VERSION_ID < 50607) {
3433
$iterator = $this;
3534
while ($iterator instanceof \OuterIterator) {
3635
$innerIterator = $iterator->getInnerIterator();

src/Symfony/Component/Finder/Iterator/RecursiveDirectoryIterator.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ public function rewind()
119119
}
120120

121121
// @see https://bugs.php.net/bug.php?id=68557
122-
if (version_compare(PHP_VERSION, '5.5.23', '<')
123-
or (version_compare(PHP_VERSION, '5.6.0', '>=') and version_compare(PHP_VERSION, '5.6.7', '<'))) {
122+
if (PHP_VERSION_ID < 50523 || PHP_VERSION_ID >= 50600 && PHP_VERSION_ID < 50607) {
124123
parent::next();
125124
}
126125

0 commit comments

Comments
 (0)