Skip to content

Commit 64da8d9

Browse files
committed
feature #22758 Remove HHVM support (fabpot)
This PR was squashed before being merged into the 4.0-dev branch (closes #22758). Discussion ---------- Remove HHVM support | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | yes-ish (for HHVM users) | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- 2125437c09 [WebServerBundle] removed obsolete ServerCommand abstract class c7eeb32 removed HHVM support
2 parents 4e1a4ba + c7eeb32 commit 64da8d9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Iterator/RecursiveDirectoryIterator.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,6 @@ public function isRewindable()
132132
return $this->rewindable;
133133
}
134134

135-
// workaround for an HHVM bug, should be removed when https://github.com/facebook/hhvm/issues/7281 is fixed
136-
if ('' === $this->getPath()) {
137-
return $this->rewindable = false;
138-
}
139-
140135
if (false !== $stream = @opendir($this->getPath())) {
141136
$infos = stream_get_meta_data($stream);
142137
closedir($stream);

0 commit comments

Comments
 (0)