Skip to content

Commit 6111a0e

Browse files
committed
#14 Fix fileExists call
1 parent 90fb3ec commit 6111a0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PathPreserver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function preserve()
8888
$relevantPaths = array();
8989
foreach ($this->preservePaths as $path) {
9090
$normalizedPath = $this->filesystem->normalizePath($path);
91-
if (static::file_exists($path) && strpos($normalizedPath, $installPathNormalized) === 0) {
91+
if (static::fileExists($path) && strpos($normalizedPath, $installPathNormalized) === 0) {
9292
$relevantPaths[] = $normalizedPath;
9393
}
9494
}

0 commit comments

Comments
 (0)