Skip to content

Commit 7cdacf4

Browse files
committed
Fix exception reason message
1 parent bbc375a commit 7cdacf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exception/FakeRepositoryException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ final class FakeRepositoryException extends \Exception implements ResetPasswordE
1717
{
1818
public function getReason(): string
1919
{
20-
return 'Please update the request_password_repository configuration in config/packages/reset_password.yaml to point to your "request password repository` service.';
20+
return 'Please update the request_password_repository configuration in config/packages/reset_password.yaml to point to your "request password repository" service.';
2121
}
2222
}

tests/UnitTests/Exception/ResetPasswordExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function exceptionDataProvider(): \Generator
3838
];
3939
yield [
4040
new FakeRepositoryException(),
41-
'Please update the request_password_repository configuration in config/packages/reset_password.yaml to point to your "request password repository` service.',
41+
'Please update the request_password_repository configuration in config/packages/reset_password.yaml to point to your "request password repository" service.',
4242
];
4343
}
4444

0 commit comments

Comments
 (0)