@@ -11,7 +11,12 @@ It is based on [rybakit/phpunit-extras](https://github.com/rybakit/phpunit-extra
1111 * [ Installation] ( #installation )
1212 * [ Annotations] ( #annotations )
1313 * [ Processors] ( #processors )
14+ * [ Lua] ( #lua )
15+ * [ Sql] ( #sql )
1416 * [ Requirements] ( #requirements )
17+ * [ clientPacker] ( #clientpacker )
18+ * [ luaCondition] ( #luacondition )
19+ * [ Tarantool] ( #tarantool )
1520 * [ Expectations] ( #expectations )
1621 * [ Mocking] ( #mocking )
1722 * [ Testing] ( #testing )
@@ -104,7 +109,7 @@ Once the annotations are configured, you can start using them:
104109
105110### Processors
106111
107- * Lua*
112+ ##### Lua
108113
109114``` php
110115/**
@@ -117,7 +122,7 @@ public function testKickReleasesBuriedTask() : void
117122}
118123```
119124
120- * Sql*
125+ ##### Sql
121126
122127``` php
123128/**
@@ -134,16 +139,16 @@ public function testExecuteQueryFetchesAllRows() : void
134139
135140### Requirements
136141
137- * ClientPacker *
142+ ##### clientPacker
138143
139- Format:
144+ * Format:*
140145
141146```
142147@requires clientPacker <packer>
143148```
144149where ` <packer> ` is either ` pure ` , ` pecl ` , or a fully qualified class name, e.g. ` Tarantool\Client\Packer\PurePacker ` .
145150
146- Example:
151+ * Example:*
147152
148153``` php
149154/**
@@ -155,16 +160,16 @@ public function testPackerUnpacksBigIntegerAsDecimal() : void
155160}
156161```
157162
158- * LuaCondition *
163+ ##### luaCondition
159164
160- Format:
165+ * Format:*
161166
162167```
163168@requires luaCondition <lua-expression>
164169```
165170where ` <lua-expression> ` is an arbitrary lua expression that should be evaluated to a Boolean value.
166171
167- Example:
172+ * Example:*
168173
169174``` php
170175/**
@@ -176,17 +181,17 @@ public function testChangeUserPassword() : void
176181}
177182```
178183
179- * Tarantool*
184+ ##### Tarantool
180185
181- Format:
186+ * Format:*
182187
183188```
184189@requires Tarantool <version-constraint>
185190```
186191where ` <version-constraint> ` is a composer-like version constraint. For details on supported formats,
187192please see the Composer [ documentation] ( https://getcomposer.org/doc/articles/versions.md#writing-version-constraints ) .
188193
189- Example:
194+ * Example:*
190195
191196``` php
192197/**
0 commit comments