php-cs-fixer-custom-fixers
php-cs-fixer-custom-fixers copied to clipboard
A set of custom fixers for PHP CS Fixer
Bumps [maglnet/composer-require-checker](https://github.com/maglnet/ComposerRequireChecker) from 4.0.0 to 4.1.0. Release notes Sourced from maglnet/composer-require-checker's releases. 4.1.0 Release Notes for 4.1.0 Feature release (minor) 4.1.0 Total issues resolved: 1 Total pull requests resolved: 3...
Bumps [kubawerlos/composer-smaller-lock](https://github.com/kubawerlos/composer-smaller-lock) from 1.0.0 to 1.0.1. Release notes Sourced from kubawerlos/composer-smaller-lock's releases. 1.0.1 Do not remote "include-path" Commits 3b0a869 Do not remote "include-path" (#12) 1c5c484 Fix for latest Composer release...
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 1.8.0 to 1.8.2. Release notes Sourced from phpstan/phpstan's releases. 1.8.2 Improvements 🔧 Basic support for PHP 8.2 #[\AllowDynamicProperties] attribute support (RFC) #[\SensitiveParameter] attribute support (RFC) Updated function...
Bumps [ergebnis/composer-normalize](https://github.com/ergebnis/composer-normalize) from 2.28.1 to 2.28.3. Release notes Sourced from ergebnis/composer-normalize's releases. 2.28.3 What's Changed Fix: Update composer/composer by @localheinz in ergebnis/composer-normalize#942 Full Changelog: https://github.com/ergebnis/composer-normalize/compare/2.28.2...2.28.3 2.28.2 What's Changed composer(deps-dev): bump...
Bumps [vimeo/psalm](https://github.com/vimeo/psalm) from 4.24.0 to 4.25.0. Release notes Sourced from vimeo/psalm's releases. 4.25.0 What's Changed Features New "Count" Report Format by @jack-worman in vimeo/psalm#8244 Adds support for fixing missing throws...
Would it be possible to adapt MultilinePromotedPropertiesFixer in such way that white lines are added between promoted properties with PHP attributes? I think the first code block is much more...
Hello, I have a request. I'd like to make the following code. ```php public function test() { } ``` to ```php public function test() {} ``` ,similar to `ConstructorEmptyBracesFixer`, as...
If the existing class property has a doc block, then the positioning of it when it gets moved to the __constructor is a little whack Adding the following to the...
On a code base I work on, I have this line: `printf('"%s";"%s";"%s"'."\r\n", ...$line);` When I enable `NoSuperfluousConcatenationFixer`, this is the resulting code: `printf("\"%s\";\"%s\";\"%s\"\r\n", ...$line);` So the fixer concatenated the strings,...