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 docs/AdvancedUsage.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ class PageCest

## Before/After Attributes

You can control execution flow with `@before` and `@after` annotations. You may move common actions
into protected (non-test) methods and invoke them before or after the test method by putting them into annotations.
It is possible to invoke several methods by using more than one `@before` or `@after` annotation.
You can control execution flow with `#[Bbefore]` and `#[After]` attributes. You may move common actions
into protected (non-test) methods and invoke them before or after the test method by putting them into attributes.
It is possible to invoke several methods by using more than one `#[Bbefore]` or `#[After]` attribute.
Methods are invoked in order from top to bottom.

```php
Expand Down