Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d178ad5

Browse files
Removed "the" from exception message
1 parent 17b8955 commit d178ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/EventListener/SuggestMissingPackageSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function onConsoleError(ConsoleErrorEvent $event): void
7272
return;
7373
}
7474

75-
$message = sprintf("%s\n\nYou may be looking for a command provided by the \"%s\" which is currently not installed. Try running \"composer require %s\".", $error->getMessage(), $suggestion[0], $suggestion[1]);
75+
$message = sprintf("%s\n\nYou may be looking for a command provided by \"%s\" which is currently not installed. Try running \"composer require %s\".", $error->getMessage(), $suggestion[0], $suggestion[1]);
7676
$event->setError(new CommandNotFoundException($message));
7777
}
7878

0 commit comments

Comments
 (0)