Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7004ae4

Browse files
authoredDec 29, 2024··
Merge branch 'phpstan:2.1.x' into mb_convert_encoding-can-return-false
2 parents 1d07b0e + 5bfe8f1 commit 7004ae4

File tree

53 files changed

+997
-196
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+997
-196
lines changed
 

‎Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ lint:
9595
--exclude tests/PHPStan/Parser/data/cleaning-property-hooks-after.php \
9696
--exclude tests/PHPStan/Rules/Properties/data/existing-classes-property-hooks.php \
9797
--exclude tests/PHPStan/Rules/Properties/data/set-property-hook-parameter.php \
98+
--exclude tests/PHPStan/Rules/Properties/data/overriding-final-property.php \
9899
src tests
99100

100101
cs:

‎conf/config.level0.neon

+1-3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ rules:
9797
- PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule
9898
- PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule
9999
- PHPStan\Rules\Properties\PropertiesInInterfaceRule
100+
- PHPStan\Rules\Properties\PropertyAssignRefRule
100101
- PHPStan\Rules\Properties\PropertyAttributesRule
101102
- PHPStan\Rules\Properties\PropertyHookAttributesRule
102103
- PHPStan\Rules\Properties\PropertyInClassRule
@@ -179,9 +180,6 @@ services:
179180
class: PHPStan\Rules\Properties\AccessPropertiesRule
180181
tags:
181182
- phpstan.rules.rule
182-
arguments:
183-
reportMagicProperties: %reportMagicProperties%
184-
checkDynamicProperties: %checkDynamicProperties%
185183

186184
-
187185
class: PHPStan\Rules\Properties\AccessStaticPropertiesRule

0 commit comments

Comments
 (0)
Please sign in to comment.