Releases: Slamdunk/phpstan-extensions
Releases · Slamdunk/phpstan-extensions
v5.0.0
Symfony related rules moved to dedicated conf conf/symfony-rules.neon
.
v4.0.0
- Support PHPStan 0.12
- Drop
DateTimeImmutableAlteredAndUnusedRule
, superseeded by PHPStan 0.12 release on level 4
v3.6.1
Use RuleErrorBuilder for more precise line info #19
v3.6.0
Add MissingClosureParameterTypehintRule #18
v3.5.2
Fix False-positive unused variable (#16)
v3.5.1
Bugfix: Filesystem::isReasable
is not an API
v3.5.0
- Added
SlamPhpStan\SymfonyFilesystemRule
: forbid calls to raw filesystem functions well wrapped by
symfony/filesystem
component
- Added
SlamPhpStan\SymfonyProcessRule
: forbid calls to raw system functions well wrapped by
symfony/process
component
v3.4.0
Added SlamPhpStan\DateTimeImmutableAlteredAndUnusedRule
: check for DateTimeImmutable calls that alter the object but don't use the result; likely an error of the transition from mutable DateTime class
v3.3.0
Added SlamPhpStan\AccessGlobalVariableWithinContextRule
: inhibit the access to globals within classes that extend or implement a certain class/interface