We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f65720c commit 936529dCopy full SHA for 936529d
Iterator/FilterIterator.php
@@ -29,7 +29,7 @@ abstract class FilterIterator extends \FilterIterator
29
*/
30
public function rewind()
31
{
32
- 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)) {
33
parent::rewind();
34
35
return;
Iterator/RecursiveDirectoryIterator.php
@@ -119,7 +119,7 @@ public function rewind()
119
}
120
121
// @see https://bugs.php.net/68557
122
- if (PHP_VERSION_ID < 50523 || PHP_VERSION_ID >= 50600 && PHP_VERSION_ID < 50607) {
+ if (\PHP_VERSION_ID < 50523 || \PHP_VERSION_ID >= 50600 && \PHP_VERSION_ID < 50607) {
123
parent::next();
124
125
0 commit comments