This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
@api‐group
Jon Ursenbach edited this page Jan 4, 2020
·
1 revision
The @api-group
annotation represents the name of the group that the action it's attached to should be grouped under when generating documentation.
@api-group groupName
Required? | Needs a visibility | Supports versioning | Supports deprecation |
---|---|---|---|
✓ | × | × | × |
Tag | Optional | Description |
---|---|---|
groupName | × | Group name |
On a resource action:
/**
* @api-label Update data on a group of users.
* @api-operationid updateUsers
* @api-group Users
*
* @api-path:public /users
*
* ...
*/
public function PATCH()
{
...
}