File tree Expand file tree Collapse file tree 5 files changed +9
-69
lines changed Expand file tree Collapse file tree 5 files changed +9
-69
lines changed Original file line number Diff line number Diff line change 4747 - name : Static Analyzer (PHPStan)
4848 run : composer test:phpstan
4949
50- - name : Static Analyzer (Psalm)
51- run : composer test:psalm
52-
5350 Tests :
5451 strategy :
5552 matrix :
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 2.1.0] - 2024-11-27
8+
9+ ### Added
10+ - Support for PHP 8.4
11+
12+ ### Removed
13+ - Psalm
14+
715## [ 2.0.0] - 2022-01-06
816
917### Added
Original file line number Diff line number Diff line change 1212 "require-dev" : {
1313 "phpunit/phpunit" : " ^8.5|^9.5" ,
1414 "phpstan/phpstan" : " ^1.0.0" ,
15- "infection/infection" : " <1.0" ,
16- "vimeo/psalm" : " ^5.0"
15+ "infection/infection" : " <1.0"
1716 },
1817 "autoload" : {
1918 "psr-4" : {
2928 "fix" : " ./tools/php-cs-fixer.phar fix" ,
3029 "test:lint" : " ./tools/php-cs-fixer.phar fix --dry-run" ,
3130 "test:phpstan" : " phpstan analyse --level max examples/ src/" ,
32- "test:psalm" : " psalm src/ examples/" ,
3331 "test:unit" : [
3432 " @putenv XDEBUG_MODE=coverage" ,
3533 " phpunit"
4139 "test" : [
4240 " @test:lint" ,
4341 " @test:phpstan" ,
44- " @test:psalm" ,
4542 " @test:unit" ,
4643 " @test:mutation"
4744 ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -38,10 +38,6 @@ final class InotifyStream extends EventEmitter
3838 */
3939 private $ watchers = [];
4040
41- /**
42- * @psalm-suppress RedundantConditionGivenDocblockType
43- * @psalm-suppress DocblockTypeContradiction
44- */
4541 public function __construct (?LoopInterface $ loop = null )
4642 {
4743 $ inotify = inotify_init ();
You can’t perform that action at this time.
0 commit comments