grammar fixes

This commit is contained in:
Dan Ang
2023-03-20 00:29:19 +01:00
parent 88e047bd27
commit 540c2a56bd
9 changed files with 9 additions and 9 deletions

View File

@ -19,6 +19,6 @@ final class TestAlreadyExist extends InvalidArgumentException implements Excepti
*/
public function __construct(string $fileName, string $description)
{
parent::__construct(sprintf('A test with the description `%s` already exist in the filename `%s`.', $description, $fileName));
parent::__construct(sprintf('A test with the description `%s` already exists in the filename `%s`.', $description, $fileName));
}
}