From 4f7e25d9a57a175b5aaf292ac7bcbe8f659d8d4e Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sun, 18 Feb 2024 17:55:06 +0100 Subject: [PATCH] Update AdvancedUsage.md: annotation -> attribute --- docs/AdvancedUsage.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/AdvancedUsage.md b/docs/AdvancedUsage.md index 3245134de..be9aca38a 100644 --- a/docs/AdvancedUsage.md +++ b/docs/AdvancedUsage.md @@ -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