From a386e39c3c6f08bc8bd8eb0455427070fa6603e8 Mon Sep 17 00:00:00 2001 From: Tavo Nieves J Date: Sat, 6 Feb 2021 00:28:10 -0500 Subject: [PATCH] Remove REST module as dev dependency --- composer.json | 1 - src/Codeception/Module/Symfony/MailerAssertionsTrait.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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 *