From 8bc7c4f276bb0e96bbe0236230418cb8d580e39d Mon Sep 17 00:00:00 2001 From: Carlos Granados Date: Thu, 12 Sep 2024 19:36:32 +0200 Subject: [PATCH] Add Assert, AssertIfTrue and AssertIfFalse attributes --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b44b6d0..1d3be52 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,8 @@ These are the available attributes and their corresponding PHPDoc annotations: | Attribute | PHPDoc Annotations | |-------------------------------------------------------------------------------------------------------------------|--------------------------------------| | [Assert](https://github.com/php-static-analysis/attributes/blob/main/doc/Assert.md) | `@assert` | +| [AssertIfFalse](https://github.com/php-static-analysis/attributes/blob/main/doc/AssertIfFalse.md) | `@assert-if-false` | +| [AssertIfTrue](https://github.com/php-static-analysis/attributes/blob/main/doc/AssertIfTrue.md) | `@assert-if-true` | | [DefineType](https://github.com/php-static-analysis/attributes/blob/main/doc/DefineType.md) | `@type` | | [Deprecated](https://github.com/php-static-analysis/attributes/blob/main/doc/Deprecated.md) | `@deprecated` | | [Immmutable](https://github.com/php-static-analysis/attributes/blob/main/doc/Immmutable.md) | `@immmutable` |