-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Comparing changes
Open a pull request
base repository: PHP-CS-Fixer/PHP-CS-Fixer
base: v2.18.3
head repository: PHP-CS-Fixer/PHP-CS-Fixer
compare: v2.18.4
- 20 commits
- 69 files changed
- 6 contributors
Commits on Mar 10, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 76af6eb - Browse repository at this point
Copy the full SHA 76af6ebView commit details
Commits on Mar 15, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 9f536ed - Browse repository at this point
Copy the full SHA 9f536edView commit details -
minor #5545 DX: update checkbashisms (keradus)
This PR was merged into the 2.18 branch. Discussion ---------- DX: update checkbashisms somehow, 2.20 disappeared from https://deb.debian.org/debian/pool/main/d/devscripts/ Commits ------- 9f536ed DX: update checkbashisms
Configuration menu - View commit details
-
Copy full SHA for 88e1fd1 - Browse repository at this point
Copy the full SHA 88e1fd1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2261d76 - Browse repository at this point
Copy the full SHA 2261d76View commit details -
minor #5540 DX: RuleSet - convert null handling to soft-warning (kera…
Configuration menu - View commit details
-
Copy full SHA for c4b84e0 - Browse repository at this point
Copy the full SHA c4b84e0View commit details
Commits on Mar 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ca36da5 - Browse repository at this point
Copy the full SHA ca36da5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ff88f6 - Browse repository at this point
Copy the full SHA 5ff88f6View commit details -
bug #5550 TypeAlternationTransformer - fix for typed static propertie…
…s (kubawerlos) This PR was squashed before being merged into the 2.18 branch. Discussion ---------- TypeAlternationTransformer - fix for typed static properties Commits ------- 5ff88f6 TypeAlternationTransformer - fix for typed static properties
Configuration menu - View commit details
-
Copy full SHA for d46a3ef - Browse repository at this point
Copy the full SHA d46a3efView commit details -
bug #5552 DX: test relation between function_declaration and method_a…
…rgument_space (keradus) This PR was merged into the 2.18 branch. Discussion ---------- DX: test relation between function_declaration and method_argument_space found here: #4085 (comment) Commits ------- ca36da5 DX: test relation between function_declaration and method_argument_space
Configuration menu - View commit details
-
Copy full SHA for a1467ec - Browse repository at this point
Copy the full SHA a1467ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for dcf5699 - Browse repository at this point
Copy the full SHA dcf5699View commit details -
bug #5551 ClassAttributesSeparationFixer - fix for properties with ty…
…pe alternation (kubawerlos, keradus) This PR was squashed before being merged into the 2.18 branch. Discussion ---------- ClassAttributesSeparationFixer - fix for properties with type alternation Commented part in test can be commented out after #5550 fix. Commits ------- dcf5699 ClassAttributesSeparationFixer - fix for properties with type alternation
Configuration menu - View commit details
-
Copy full SHA for cbe98ff - Browse repository at this point
Copy the full SHA cbe98ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 701708e - Browse repository at this point
Copy the full SHA 701708eView commit details -
bug #4085 Priority: AlignMultilineComment should run before every Php…
…docFixer (dmvdbrugge) This PR was merged into the 2.18 branch. Discussion ---------- Priority: AlignMultilineComment should run before every PhpdocFixer I made use of the graph I generated with https://github.com/dmvdbrugge/fixer-prio-graph I also found a hidden priority between LineEnding and Braces, which I had to add in this PR as well, because otherwise the `@Symfony_whitespace.test` would fail. Fixes #3879 Commits ------- 701708e Priority: AlignMultilineComment should run before every PhpdocFixer
Configuration menu - View commit details
-
Copy full SHA for fc4791c - Browse repository at this point
Copy the full SHA fc4791cView commit details
Commits on Mar 19, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 077eb6a - Browse repository at this point
Copy the full SHA 077eb6aView commit details -
bug #5548 NullableTypeDeclarationForDefaultNullValueFixer - fix handl…
…ing promoted properties (jrmajor, keradus) This PR was squashed before being merged into the 2.18 branch. Discussion ---------- NullableTypeDeclarationForDefaultNullValueFixer - fix handling promoted properties Fixes #5547 **Before:** ```diff public function __construct( - public ?array $x = null, - ?array $y = null, + public array $x = null, + array $y = null, ) { } ``` **After:** ```diff public function __construct( public ?array $x = null, - ?array $y = null, + array $y = null, ) { } ``` Commits ------- 077eb6a NullableTypeDeclarationForDefaultNullValueFixer - fix handling promoted properties
Configuration menu - View commit details
-
Copy full SHA for c64d3f2 - Browse repository at this point
Copy the full SHA c64d3f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54dbfc3 - Browse repository at this point
Copy the full SHA 54dbfc3View commit details -
bug #5464 NativeFunctionInvocationFixer - PHP 8 attributes (HypeMC, k…
…eradus) This PR was squashed before being merged into the 2.18 branch. Discussion ---------- NativeFunctionInvocationFixer - PHP 8 attributes The `NativeFunctionInvocationFixer` removes the leading `\` from attributes when strict is set to `true` which breaks the code. Config: ```php 'native_function_invocation' => [ 'strict' => true, ], ``` Result: ```diff -#[\Attribute(\Attribute::TARGET_CLASS)] +#[Attribute(\Attribute::TARGET_CLASS)] class Foo {} ``` This PR should fix the problem. Commits ------- 54dbfc3 NativeFunctionInvocationFixer - PHP 8 attributesConfiguration menu - View commit details
-
Copy full SHA for d3aaf70 - Browse repository at this point
Copy the full SHA d3aaf70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55a9991 - Browse repository at this point
Copy the full SHA 55a9991View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d2d99d - Browse repository at this point
Copy the full SHA 5d2d99dView commit details
Commits on Mar 20, 2021
-
bug #5421 PsrAutoloadingFixer - Fix PSR autoloading outside configure…
…d directory (kelunik, keradus) This PR was merged into the 2.18 branch. Discussion ---------- PsrAutoloadingFixer - Fix PSR autoloading outside configured directory Fixes amphp/php-cs-fixer-config#5. Commits ------- 5d2d99d PsrAutoloadingFixer - call realpath only once 55a9991 PsrAutoloadingFixer - Fix PSR autoloading outside configured directory
Configuration menu - View commit details
-
Copy full SHA for 06f764e - Browse repository at this point
Copy the full SHA 06f764eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.18.3...v2.18.4