Jeremiasz Major

Results 27 comments of Jeremiasz Major

Psalm has [`UnusedPsalmSuppress`](https://psalm.dev/docs/running_psalm/issues/UnusedPsalmSuppress/) inspection, which is only reported when it's run with `--find-unused-psalm-suppress` flag, because some suppressions are platform-specific. In our case, redundant `@var` is analyzer-specific, so maybe we can...

`@PhpCsFixer` set uses `@PSR12` via `@Symfony`. Do we want to add `@PER` just to the `@PhpCsFixer` set, or does Symfony want to use `@PER` too?

@keradus Thank you! Here you go :)

Thank you for this and #6466, I find docblock formatting to be particularly hard to maintain by hand :)

Failing test case: https://github.com/jrmajor/PHP-CS-Fixer/commit/89bc6feaaa96a3d2ca412003f1cf122f0569494c.

> Deprecate `SingleSpaceAfterConstructFixer` in favor of a new `SingleSpaceAroundConstructFixer` that would also fix space before the use keyword for anonymous functions. If `SingleSpaceAroundConstructFixer` also handled spacing around the `fn` and...

> both of these syntaxes are technically correct when writing docblocks in PHP They are invalid both in [Psalm](https://psalm.dev/r/8a03a40911) and [PHPStan](https://phpstan.org/r/3f6ae3c0-dc8e-437f-b4d5-a8c82fbb053d). What are the tools/specifications that do support this syntax?

@ondrejmirtes I've seen that in PHPUnit too, but last time I've checked Psalm didn't support that, so I've decided to get it working with methods first :) BTW, I would...

@ondrejmirtes I'm sorry, I don't know why these tests are failing (these aren't new ones, I've added them in the previous PR, in 598bda2b7a589f9bf59137b0c05179a28bddc1c5).

What would be the difference between `T\vec(T\mixed())` and `T\mixed_vec()`?