Skip to content

Commit 897ef17

Browse files
committed
Remove REST module as dev dependency (#115)
1 parent 223fa80 commit 897ef17

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@
1818
"require": {
1919
"php": "^7.3 | ^8.0",
2020
"ext-json": "*",
21-
"codeception/lib-innerbrowser": "^1.3",
21+
"codeception/lib-innerbrowser": "^1.4",
2222
"codeception/codeception": "^4.0"
2323
},
2424
"require-dev": {
2525
"codeception/module-asserts": "^1.3",
2626
"codeception/module-doctrine2": "^1.1",
27-
"codeception/module-rest": "^1.2",
2827
"vlucas/phpdotenv": "^4.2 | ^5.3"
2928
},
3029
"suggest": {

src/Codeception/Module/Symfony/MailerAssertionsTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function dontSeeEmailIsSent(): void
2323
* Checks if the desired number of emails was sent.
2424
* Asserts that 1 email was sent by default, specify the `expectedCount` parameter to modify it.
2525
* The email is checked using Symfony message logger, which means:
26-
* * 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)
26+
* * If your app performs a redirect after sending the email, you need to suppress it using [stopFollowingRedirects](https://codeception.com/docs/modules/Symfony#stopFollowingRedirects).
2727
*
2828
* ```php
2929
* <?php

0 commit comments

Comments
 (0)