-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
Enforce 4 spaces of indentation for docblock annotations. For example:
Invalid:
/**
* @ApiFilter(
* OrderFilter::class,
* properties={"id", "name": "asc", "createdAt", "updatedAt"},
* arguments={"orderParameterName"="order"}
* )
*/
Valid:
/**
* @ApiFilter(
* OrderFilter::class,
* properties={"id", "name": "asc", "createdAt", "updatedAt"},
* arguments={"orderParameterName"="order"}
* )
*/