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.
2 parents fe39059 + 50b2f26 commit c4a47f7Copy full SHA for c4a47f7
src/Plugin.php
@@ -410,7 +410,11 @@ private function cleanInstalledPaths()
410
411
if (
412
(is_dir($path) === false || is_readable($path) === false) &&
413
- (is_dir($alternativePath) === false || is_readable($alternativePath) === false)
+ (
414
+ $alternativePath === false ||
415
+ is_dir($alternativePath) === false ||
416
+ is_readable($alternativePath) === false
417
+ )
418
) {
419
unset($this->installedPaths[$key]);
420
$changes = true;
0 commit comments