Skip to content
Merged
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
6 changes: 3 additions & 3 deletions src/Codeception/Module/Symfony/BrowserAssertionsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ public function seePageRedirectsTo(string $page, string $redirectsTo): void
/**
* Submit a form specifying the form name only once.
*
* Use this function instead of $I->submitForm() to avoid repeating the form name in the field selectors.
* If you customized the names of the field selectors use $I->submitForm() for full control.
* Use this function instead of [`$I->submitForm()`](#submitForm) to avoid repeating the form name in the field selectors.
* If you customized the names of the field selectors use `$I->submitForm()` for full control.
*
* ```php
* <?php
Expand All @@ -94,7 +94,7 @@ public function seePageRedirectsTo(string $page, string $redirectsTo): void
* ]);
* ```
*
* @param string $name
* @param string $name The `name` attribute of the `<form>` (you cannot use an array as selector here)
* @param string[] $fields
*/
public function submitSymfonyForm(string $name, array $fields): void
Expand Down