Skip to content

Commit ce4376e

Browse files
Merge pull request #468 from greg0ire/drop-psalm
Drop Psalm
2 parents 3004c9b + 5a5d13c commit ce4376e

File tree

6 files changed

+5
-36
lines changed

6 files changed

+5
-36
lines changed

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@
66
/phpunit.xml.dist export-ignore
77
/phpstan.neon.dist export-ignore
88
/phpstan-baseline.neon export-ignore
9-
/psalm.xml export-ignore
10-
/psalm-baseline.xml export-ignore

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111

1212
jobs:
1313
static-analysis:
14-
uses: "doctrine/.github/.github/workflows/static-analysis[email protected]"
14+
uses: "doctrine/.github/.github/workflows/phpstan[email protected]"

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@
3636
"doctrine/coding-standard": "^12",
3737
"phpstan/phpstan": "^1.10.39",
3838
"phpunit/phpunit": "^9.6.13",
39-
"symfony/phpunit-bridge": "^6.3.6",
40-
"vimeo/psalm": "^5.15"
39+
"symfony/phpunit-bridge": "^6.3.6"
4140
},
4241
"conflict": {
4342
"doctrine/dbal": "< 3"

psalm.xml

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

src/Loader/SymfonyFixturesLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final class SymfonyFixturesLoader extends SymfonyBridgeLoader
2727
/**
2828
* @internal
2929
*
30-
* @psalm-param list<array{fixture: FixtureInterface, groups: list<string>}> $fixtures
30+
* @phpstan-param list<array{fixture: FixtureInterface, groups: list<string>}> $fixtures
3131
*/
3232
public function addFixtures(array $fixtures): void
3333
{
@@ -134,7 +134,7 @@ private function addGroupsFixtureMapping(string $className, array $groups): void
134134
/**
135135
* Collect any dependent fixtures from the given classes.
136136
*
137-
* @psalm-return array<string,true>
137+
* @phpstan-return array<string,true>
138138
*/
139139
private function collectDependencies(string ...$fixtureClass): array
140140
{

src/Purger/PurgerFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
interface PurgerFactory
1111
{
12-
/** @psalm-param list<string> $excluded */
12+
/** @phpstan-param list<string> $excluded */
1313
public function createForEntityManager(
1414
?string $emName,
1515
EntityManagerInterface $em,

0 commit comments

Comments
 (0)