From 645e5245dd1a10ca5ba08e7ba994cd6b81ff042c Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Fri, 26 Nov 2021 10:09:02 +0100 Subject: [PATCH] Error message grammar fix --- src/Composer/DependencyResolver/SolverProblemsException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/DependencyResolver/SolverProblemsException.php b/src/Composer/DependencyResolver/SolverProblemsException.php index d332fee58..0fa3b44b7 100644 --- a/src/Composer/DependencyResolver/SolverProblemsException.php +++ b/src/Composer/DependencyResolver/SolverProblemsException.php @@ -118,7 +118,7 @@ class SolverProblemsException extends \RuntimeException $text = "To enable extensions, verify that they are enabled in your .ini files:\n - "; $text .= implode("\n - ", $paths); - $text .= "\nYou can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode."; + $text .= "\nYou can also run `php --ini` in a terminal to see which files are used by PHP in CLI mode."; return $text; }