From e770cb4dcf0c77b1d5bbbe145e5dc98aba3a78d1 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sun, 25 Oct 2020 14:11:02 +0100 Subject: [PATCH] Fix var name --- src/Composer/DependencyResolver/Transaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/DependencyResolver/Transaction.php b/src/Composer/DependencyResolver/Transaction.php index 09c3bc6f5..ecbeb87ac 100644 --- a/src/Composer/DependencyResolver/Transaction.php +++ b/src/Composer/DependencyResolver/Transaction.php @@ -274,7 +274,7 @@ class Transaction }); // is this a plugin with no meaningful dependencies? - if ($isPlugin && !count($requires)) { + if ($isDownloadsModifyingPlugin && !count($requires)) { // plugins with no dependencies go to the very front array_unshift($dlModyingPluginsNoDeps, $op); } else {