mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-12-02 09:27:56 +01:00
f5ddd1dffb
When there are any initializers (`setUp` or `@before`) it's quite likely properties were initialized there. As a followup development, we may later implement more fine-grained checks to see what actually been initialized in those methods.
41 lines
1.4 KiB
PHP
Executable File
41 lines
1.4 KiB
PHP
Executable File
<?php
|
|
namespace Psalm\PhpUnitPlugin;
|
|
|
|
use Composer\Semver\Comparator;
|
|
use Composer\Semver\VersionParser;
|
|
use Muglug\PackageVersions\Versions;
|
|
use SimpleXMLElement;
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
|
|
class Plugin implements PluginEntryPointInterface
|
|
{
|
|
/** @return void */
|
|
public function __invoke(RegistrationInterface $psalm, SimpleXMLElement $config = null)
|
|
{
|
|
$psalm->addStubFile(__DIR__ . '/stubs/Assert.php');
|
|
if ($this->packageVersionIs('phpunit/phpunit', '>=', '7.5')) {
|
|
$psalm->addStubFile(__DIR__ . '/stubs/Assert_75.php');
|
|
}
|
|
$psalm->addStubFile(__DIR__ . '/stubs/TestCase.php');
|
|
$psalm->addStubFile(__DIR__ . '/stubs/MockBuilder.php');
|
|
$psalm->addStubFile(__DIR__ . '/stubs/InvocationMocker.php');
|
|
$psalm->addStubFile(__DIR__ . '/stubs/Prophecy.php');
|
|
|
|
class_exists(Hooks\TestCaseHandler::class, true);
|
|
$psalm->registerHooksFromClass(Hooks\TestCaseHandler::class);
|
|
}
|
|
|
|
private function packageVersionIs(string $package, string $op, string $ref): bool
|
|
{
|
|
$currentVersion = (string) Versions::getShortVersion($package);
|
|
|
|
$parser = new VersionParser();
|
|
|
|
$currentVersion = $parser->normalize($currentVersion);
|
|
$ref = $parser->normalize($ref);
|
|
|
|
return Comparator::compare($currentVersion, $op, $ref);
|
|
}
|
|
}
|