diff --git a/composer.json b/composer.json index ef8aaf11..b5d83ec2 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,6 @@ "require-dev": { "codeception/module-asserts": "^1.3", "codeception/module-doctrine2": "^1.1", - "codeception/module-rest": "^1.2", "vlucas/phpdotenv": "^4.2 | ^5.3" }, "suggest": { diff --git a/src/Codeception/Module/Symfony/MailerAssertionsTrait.php b/src/Codeception/Module/Symfony/MailerAssertionsTrait.php index 57f0e562..d51769e2 100644 --- a/src/Codeception/Module/Symfony/MailerAssertionsTrait.php +++ b/src/Codeception/Module/Symfony/MailerAssertionsTrait.php @@ -23,7 +23,7 @@ public function dontSeeEmailIsSent(): void * Checks if the desired number of emails was sent. * Asserts that 1 email was sent by default, specify the `expectedCount` parameter to modify it. * The email is checked using Symfony message logger, which means: - * * If your app performs a redirect after sending the email, you need to suppress this using REST Module's [stopFollowingRedirects](https://codeception.com/docs/modules/REST#stopFollowingRedirects) + * * If your app performs a redirect after sending the email, you need to suppress it using [stopFollowingRedirects](https://codeception.com/docs/modules/Symfony#stopFollowingRedirects). * * ```php *