Skip to content

Remove REST module as dev dependency #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/Symfony/MailerAssertionsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
* <?php
Expand Down