Releases: phpstan/phpstan-phpunit
Releases · phpstan/phpstan-phpunit
0.12.18
0.12.17
7c54b2d
- Use the maintained version of php-parallel-linte5edd1c
- Travis > Test on PHP 7.3 and 7.40adbd9f
- Updated coding standard that can run on PHP 7.4ef674b8
- Bump minimum versions to prevent deprecations while running in lowest mode7bd24ab
- Use GitHub Actions instead of Travis CI432575b
- Automatic release workflow
0.12.16
0.12.16
0.11.2
0.11.1
0.10
0.9.4
Support PHPUnit 7.0
0.9.3
Added strict rules for more precise TestCase assert
calls (enabled separately by including strictRules.neon
) - #5, thanks @mhujer!
- Check that you are not using
assertSame()
withtrue
as expected value.assertTrue()
should be used instead. - Check that you are not using
assertSame()
withfalse
as expected value.assertFalse()
should be used instead. - Check that you are not using
assertSame()
withnull
as expected value.assertNull()
should be used instead. - Check that you are not using
assertSame()
withcount($variable)
as second parameter.assertCount($variable)
should be used instead.
0.9.2
0.9.1
Supports new names for MockBuilder
and MockObject
introduced in PHPUnit 6.5.