PHP-CS-Fixer @PHP56Migration changes #846
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
r? @remi-stripe @richardm-stripe
PHP-CS-Fixer actually has a ton of features I only learned about yesterday. One of these is "risky" rulesets that you can use when upgrading PHP or PHPUnit versions to automatically upgrade to newer syntaxes.
In this case I ran
./vendor/bin/php-cs-fixer fix --allow-risky=yes --rules=@PHP56Migration:risky .
. The only change is replacing the use of thepow()
function with the**
operator introduced in PHP 5.6 (https://www.php.net/manual/en/language.operators.arithmetic.php).(This is "risky" because the
pow()
function might have been overridden, but that's not the case for us.)