Kyle

Results 337 comments of Kyle

Just to put this out of the way, it has nothing to do with promoted properties: ```php class SomeEntity { protected bool $someBoolProp; public function __construct($someBoolProp = true) { $this->someBoolProp...

@ravage84 No need for a manual squash, we can use GitHub to Squash the PR rather than merge it.

It changes the commiter, not the author.

Hi, thanks to this I discovered that a parameter can be both variadic and reference 🤯 The test is good as it's what also missed in #818 but I did...

> min() allows you to know that it was the variadic paramter, and will correctly let you know if it is by reference. isset() simply ignores it and says it's...

Bug confirmed, meanwhile you can use: ```php ``` Or: ```php ```

I'm working on a fix, you can try `composer require pdepend/pdepend:dev-fix/short-tags-multiple-variables` (if you use PHPMD from composer) to preview it and support comas in `` tags.

I would add `@` to silent it :) See what Symfony does: https://github.com/symfony/symfony/blob/8ace1c1f9467b8438b1618d3a8fbdf3d88e3fc54/src/Symfony/Component/Mailer/Bridge/Mailgun/Transport/MailgunApiTransport.php#L138

Symony is a framework, but it's also many standalone components, you would very disappointed to suddenly get an deprecation error throwing in production just because a dependency of a dependency...

> to keep a blind eye It's not a blind eye, you get strikeout on a method with a good IDE when having `@deprecated` you can have some checkup status...