coding-standard
coding-standard copied to clipboard
Multiline attribute arguments
Is it possible to enforce multi-line attribute arguments?
Example from https://github.com/squizlabs/PHP_CodeSniffer/issues/3656:
Before:
#[OA\Post(path: '/users/register', description: 'Create an user account')]
After:
#[OA\Post(
path: '/users/register',
description: 'Create an user account'
)]