1
0
Fork 0

Error message grammar fix

pull/10283/head^2
Nils Adermann 2021-11-26 10:09:02 +01:00 committed by GitHub
parent 0b9e1da4fc
commit 645e5245dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}