Explorar el Código

Update exception message for disabling multi conflict rules

Nils Adermann hace 6 años
padre
commit
79066931e6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Composer/DependencyResolver/MultiConflictRule.php

+ 1 - 1
src/Composer/DependencyResolver/MultiConflictRule.php

@@ -79,7 +79,7 @@ class MultiConflictRule extends Rule
 
     public function disable()
     {
-        throw new \RuntimeException("can't disable conflict rule");
+        throw new \RuntimeException("Disabling multi conflict rules is not possible. Please contact composer at https://github.com/composer/composer to let us debug what lead to this situation.");
     }
 
     /**