We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ParamReturnAndVarTagMalformsFixer
Hi! I noticed that the Symplify\CodingStandard\Fixer\Commenting\ParamReturnAndVarTagMalformsFixer tries to 'fix' correct multi-line doc-blocks.
Symplify\CodingStandard\Fixer\Commenting\ParamReturnAndVarTagMalformsFixer
The following code:
/** * @param array<string, array{ * foo: string * }> $foo */ public function test($foo, $bar): void {}
Produces the following diff:
---------- begin diff ---------- /** - * @param array<string, array{ + * @param array<string, $bar array{ * foo: string * }> $foo */ ----------- end diff ----------- Applied checkers: * Symplify\CodingStandard\Fixer\Commenting\ParamReturnAndVarTagMalformsFixer
This doesn't happen when the missing argument ($bar) is also defined in the doc-block.
$bar
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
I noticed that the
Symplify\CodingStandard\Fixer\Commenting\ParamReturnAndVarTagMalformsFixer
tries to 'fix' correct multi-line doc-blocks.The following code:
Produces the following diff:
This doesn't happen when the missing argument (
$bar
) is also defined in the doc-block.The text was updated successfully, but these errors were encountered: