If you have a high test coverage index, and your tests for this pull request are passing, it should be both safe and recommended to merge this update.
Updated packages
Some times an update also needs new or updated dependencies to be installed. Even if this branch is for updating one dependency, it might contain other installs or updates. All of the updates in this branch can be found here:
phpstan/phpstan-strict-rules: 1.2.3 (updated from 1.1.0)
Release notes
Here are the release notes for all versions released between your current running version, and the version this PR updates the package to.
List of release notes
- [Release notes for tag 1.2.3](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.3)
- [Release notes for tag 1.2.2](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.2)
- [Release notes for tag 1.2.1](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.1)
- [Release notes for tag 1.2.0](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.0)
Changed files
Here is a list of changed files between the version you use, and the version this pull request updates to:
This is an automated pull request from Violinist: Continuously and automatically monitor and update your composer dependencies. Have ideas on how to improve this message? All violinist messages are open-source, and can be improved here.
If you have a high test coverage index, and your tests for this pull request are passing, it should be both safe and recommended to merge this update.
Updated packages
Some times an update also needs new or updated dependencies to be installed. Even if this branch is for updating one dependency, it might contain other installs or updates. All of the updates in this branch can be found here:
Release notes
Here are the release notes for all versions released between your current running version, and the version this PR updates the package to.
List of release notes
- [Release notes for tag 1.2.3](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.3) - [Release notes for tag 1.2.2](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.2) - [Release notes for tag 1.2.1](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.1) - [Release notes for tag 1.2.0](https://github.com/phpstan/phpstan-strict-rules/releases/tag/1.2.0)Changed files
Here is a list of changed files between the version you use, and the version this pull request updates to:
List of changed files
.github/dependabot.yml .github/renovate.json .github/workflows/build.yml .github/workflows/lock-closed-issues.yml .github/workflows/release-tweet.yml .github/workflows/release.yml .gitignore README.md build-cs/.gitignore build-cs/composer.json build-cs/composer.lock composer.json phpcs.xml phpunit.xml rules.neon src/Rules/BooleansInConditions/BooleanInBooleanAndRule.php src/Rules/BooleansInConditions/BooleanInBooleanNotRule.php src/Rules/BooleansInConditions/BooleanInBooleanOrRule.php src/Rules/BooleansInConditions/BooleanInElseIfConditionRule.php src/Rules/BooleansInConditions/BooleanInIfConditionRule.php src/Rules/BooleansInConditions/BooleanInTernaryOperatorRule.php src/Rules/BooleansInConditions/BooleanRuleHelper.php src/Rules/Cast/UselessCastRule.php src/Rules/Classes/RequireParentConstructCallRule.php src/Rules/DisallowedConstructs/DisallowedBacktickRule.php src/Rules/DisallowedConstructs/DisallowedEmptyRule.php src/Rules/DisallowedConstructs/DisallowedImplicitArrayCreationRule.php src/Rules/DisallowedConstructs/DisallowedShortTernaryRule.php src/Rules/ForLoop/OverwriteVariablesWithForLoopInitRule.php src/Rules/ForeachLoop/OverwriteVariablesWithForeachRule.php src/Rules/Functions/ClosureUsesThisRule.php src/Rules/Methods/WrongCaseOfInheritedMethodRule.php src/Rules/Operators/OperandInArithmeticIncrementOrDecrementRule.php src/Rules/Operators/OperandInArithmeticPostDecrementRule.php src/Rules/Operators/OperandInArithmeticPostIncrementRule.php src/Rules/Operators/OperandInArithmeticPreDecrementRule.php src/Rules/Operators/OperandInArithmeticPreIncrementRule.php src/Rules/Operators/OperandsInArithmeticAdditionRule.php src/Rules/Operators/OperandsInArithmeticDivisionRule.php src/Rules/Operators/OperandsInArithmeticExponentiationRule.php src/Rules/Operators/OperandsInArithmeticModuloRule.php src/Rules/Operators/OperandsInArithmeticMultiplicationRule.php src/Rules/Operators/OperandsInArithmeticSubtractionRule.php src/Rules/Operators/OperatorRuleHelper.php src/Rules/StrictCalls/DynamicCallOnStaticMethodsCallableRule.php src/Rules/StrictCalls/DynamicCallOnStaticMethodsRule.php src/Rules/StrictCalls/StrictFunctionCallsRule.php src/Rules/SwitchConditions/MatchingTypeInSwitchCaseConditionRule.php src/Rules/VariableVariables/VariableMethodCallRule.php src/Rules/VariableVariables/VariableMethodCallableRule.php src/Rules/VariableVariables/VariablePropertyFetchRule.php src/Rules/VariableVariables/VariableStaticMethodCallRule.php src/Rules/VariableVariables/VariableStaticMethodCallableRule.php src/Rules/VariableVariables/VariableStaticPropertyFetchRule.php src/Rules/VariableVariables/VariableVariablesRule.php tests/Levels/LevelsIntegrationTest.php tests/Rules/BooleansInConditions/BooleanInBooleanAndRuleTest.php tests/Rules/BooleansInConditions/BooleanInBooleanNotRuleTest.php tests/Rules/BooleansInConditions/BooleanInBooleanOrRuleTest.php tests/Rules/BooleansInConditions/BooleanInElseIfConditionRuleTest.php tests/Rules/BooleansInConditions/BooleanInIfConditionRuleTest.php tests/Rules/BooleansInConditions/BooleanInTernaryOperatorRuleTest.php tests/Rules/Cast/UselessCastRuleTest.php tests/Rules/Classes/RequireParentConstructCallRuleTest.php tests/Rules/DisallowedConstructs/DisallowedBacktickRuleTest.php tests/Rules/DisallowedConstructs/DisallowedEmptyRuleTest.php tests/Rules/DisallowedConstructs/DisallowedImplicitArrayCreationRuleTest.php tests/Rules/DisallowedConstructs/DisallowedShortTernaryRuleTest.php tests/Rules/Methods/WrongCaseOfInheritedMethodRuleTest.php tests/Rules/Operators/OperandInArithmeticIncrementOrDecrementRuleTest.php tests/Rules/Operators/OperandsInArithmeticAdditionRuleTest.php tests/Rules/Operators/OperandsInArithmeticDivisionRuleTest.php tests/Rules/Operators/OperandsInArithmeticExponentiationRuleTest.php tests/Rules/Operators/OperandsInArithmeticModuloRuleTest.php tests/Rules/Operators/OperandsInArithmeticMultiplicationRuleTest.php tests/Rules/Operators/OperandsInArithmeticSubtractionRuleTest.php tests/Rules/StrictCalls/DynamicCallOnStaticMethodsCallableRuleTest.php tests/Rules/StrictCalls/DynamicCallOnStaticMethodsRuleTest.php tests/Rules/StrictCalls/StrictFunctionCallsRuleTest.php tests/Rules/SwitchConditions/MatchingTypeInSwitchCaseConditionRuleTest.php tests/Rules/VariableVariables/VariableMethodCallableRuleTest.phpChangelog
Here is a list of changes between the version you use, and the version this pull request updates to:
Move IllegalConstructorMethodCallRule and IllegalConstructorStaticCallRule to phpstan-strict-rules
RequireParentConstructCallRule - fix abstract constructors
Turn on checkAlwaysTrueLooseComparison
Bleeding edge - set checkDynamicProperties to true
Require PHPStan 1.6.0
chore(deps): update dependency slevomat/coding-standard to v7.1
Drop alias
Drop support for PHP 7.1, require PHPStan 1.5.0
Update workflow
chore(deps): update dependency slevomat/coding-standard to v7.0.20
chore(deps): update dependency slevomat/coding-standard to v7.0.19
chore(deps): update actions/checkout action to v3
fix build after phpstan-src change
chore(deps): update dependency slevomat/coding-standard to v7
Update renovate.json
Update lock-closed-issues.yml
chore(deps): update github-actions
chore(deps): update metcalfc/changelog-generator action to v1.0.1
Delete dependabot.yml
Update and rename renovate.json to .github/renovate.json
chore(deps): add renovate.json
docs(readme): improve "Enabling rules one-by-one"
Update phpunit.xml
Update release.yml
Tweet release action
Allow Composer plugins
Composer > Remove
--no-suggest``Fixed incorrect branch alias
This is an automated pull request from Violinist: Continuously and automatically monitor and update your composer dependencies. Have ideas on how to improve this message? All violinist messages are open-source, and can be improved here.