Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update Symfony.php
Added info about Console, see Codeception/Codeception#4698
  • Loading branch information
ThomasLandauer authored Oct 22, 2020
commit a7c1393c15b44136952448a6a865ac4311e97773
6 changes: 3 additions & 3 deletions src/Codeception/Module/Symfony.php
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,9 @@ public function seeInCurrentRoute($routeName)
/**
* Checks if the desired number of emails was sent.
* If no argument is provided then at least one email must be sent to satisfy the check.
* The email is checked using Symfony's profiler. If your app performs a redirect after sending the email,
* you need to tell Codeception to not follow this redirect, using REST Module's [stopFollowingRedirects](
* https://codeception.com/docs/modules/REST#stopFollowingRedirects) method.
* The email is checked using Symfony's profiler, 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 the email is sent by a Symfony Console Command, Codeception cannot detect it.
*
* ``` php
* <?php
Expand Down