Skip to content
Snippets Groups Projects

Issue #3382942: Eliminate dependencies on Composer Stager internals

Merged Ted Bowman requested to merge issue/automatic_updates-3382942:3382942-round-3 into 3.0.x
Files
4
@@ -45,11 +45,12 @@ final class StatusCheckEvent extends PreOperationStageEvent {
// examine the list of excluded paths.
if ($excluded_paths instanceof \Throwable) {
$this->addErrorFromThrowable($excluded_paths);
$this->excludedPaths = NULL;
$excluded_paths = NULL;
}
else {
$this->excludedPaths = new ImmutablePathList($excluded_paths);
$excluded_paths = new ImmutablePathList($excluded_paths);
}
$this->excludedPaths = $excluded_paths;
}
/**
Loading