Skip to content

Commit 136ec6d

Browse files
remove psalm
1 parent 974cdcc commit 136ec6d

File tree

5 files changed

+9
-69
lines changed

5 files changed

+9
-69
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ jobs:
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:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

composer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
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": {
@@ -29,7 +28,6 @@
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"
@@ -41,7 +39,6 @@
4139
"test": [
4240
"@test:lint",
4341
"@test:phpstan",
44-
"@test:psalm",
4542
"@test:unit",
4643
"@test:mutation"
4744
]

psalm.xml

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/InotifyStream.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)