Skip to content

Commit b3fa0b7

Browse files
committed
removed Psalm in favour of PHPStan
1 parent 61c1a16 commit b3fa0b7

9 files changed

+6
-33
lines changed

.gitattributes

-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@
55
/phpcs.xml.dist export-ignore
66
/phpstan.neon export-ignore
77
/phpunit.xml.dist export-ignore
8-
/psalm.xml.dist export-ignore
9-
/psalm-baseline.xml export-ignore
108
/tests/ export-ignore

composer.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@
4343
"phpstan/phpstan": "^1.4.6",
4444
"phpstan/phpstan-phpunit": "^1.0.0",
4545
"phpunit/phpunit": "^9.5.13",
46-
"squizlabs/php_codesniffer": "^3.6.2",
47-
"vimeo/psalm": "^5.4.0"
46+
"squizlabs/php_codesniffer": "^3.6.2"
4847
},
4948
"conflict": {
5049
"doctrine/migrations": "<3.3"
@@ -81,13 +80,11 @@
8180
"check": [
8281
"@cs-check",
8382
"@phpstan",
84-
"@psalm",
8583
"@test"
8684
],
8785
"cs-check": "phpcs",
8886
"cs-fix": "phpcbf",
8987
"phpstan": "phpstan analyse",
90-
"psalm": "psalm --stats",
9188
"test": "phpunit --colors=always",
9289
"test-coverage": "phpunit --colors=always --coverage-clover=coverage.xml"
9390
}

psalm.xml

-17
This file was deleted.

src/CliConfigurator.php

-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ private function getObjectManagerName(): string
129129
return $this->defaultObjectManagerName;
130130
}
131131

132-
/** @psalm-suppress ReservedWord */
133132
return $arguments->getParameterOption('--object-manager');
134133
}
135134

src/Paginator/Adapter/DoctrinePaginator.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
/**
1313
* Paginator adapter for the Laminas\Paginator component
1414
*
15-
* @psalm-template T of object
16-
* @psalm-template TKey of int
17-
* @psalm-template TValue
15+
* @phpstan-template T of object
16+
* @phpstan-template TKey of int
17+
* @phpstan-template TValue
1818
* @template-implements AdapterInterface<TKey, TValue>
1919
*/
2020
class DoctrinePaginator implements AdapterInterface, JsonSerializable
@@ -57,8 +57,6 @@ public function getPaginator(): Paginator
5757
* @param int|null $itemCountPerPage
5858
*
5959
* @return ArrayIterator<TKey, TValue>
60-
*
61-
* @psalm-suppress LessSpecificImplementedReturnType
6260
*/
6361
public function getItems($offset, $itemCountPerPage)
6462
{

src/Service/DBALConnectionFactory.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ public function __invoke(ContainerInterface $serviceLocator, $requestedName, ?ar
5858
$configuration = $serviceLocator->get($options->getConfiguration());
5959
$eventManager = $serviceLocator->get($options->getEventManager());
6060

61-
/** @psalm-suppress InvalidArgument */
6261
$connection = DriverManager::getConnection($params, $configuration, $eventManager);
6362
foreach ($options->getDoctrineTypeMappings() as $dbType => $doctrineType) {
6463
$connection->getDatabasePlatform()->registerDoctrineTypeMapping($dbType, $doctrineType);

src/Service/MigrationsCommandFactory.php

-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ private function getObjectManagerName(): string
111111
return $this->defaultObjectManagerName;
112112
}
113113

114-
/** @psalm-suppress ReservedWord */
115114
return $arguments->getParameterOption('--object-manager');
116115
}
117116
}

src/Service/SQLLoggerCollectorFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ protected function getOptions(ContainerInterface $serviceLocator): mixed
7979
}
8080

8181
/**
82-
* @psalm-return class-string
82+
* @phpstan-return class-string
8383
*/
8484
protected function getOptionsClass(): string
8585
{

src/Yuml/MetadataGrapher.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ private function getParent(ClassMetadata $class): ?ClassMetadata
209209
/**
210210
* Visit a given association and mark it as visited
211211
*
212-
* @psalm-param class-string $className
212+
* @phpstan-param class-string $className
213213
*
214214
* @return bool true if the association was visited before
215215
*/

0 commit comments

Comments
 (0)