Skip to content

Commit

Permalink
Merge pull request #8220 from othercorey/fix-codestyle
Browse files Browse the repository at this point in the history
Fix codestyle errors in InternalCallMapHandlerTest
  • Loading branch information
orklah committed Jul 6, 2022
2 parents e28cd12 + 31bee0c commit 65ffac2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Internal/Codebase/InternalCallMapHandlerTest.php
Expand Up @@ -2,11 +2,9 @@

namespace Psalm\Tests\Internal\Codebase;

use Exception;
use InvalidArgumentException;
use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\ExpectationFailedException;
use PHPUnit\Framework\SkippedTestError;
use Psalm\Codebase;
use Psalm\Internal\Analyzer\ProjectAnalyzer;
use Psalm\Internal\Codebase\InternalCallMapHandler;
Expand All @@ -18,11 +16,11 @@
use Psalm\Tests\TestCase;
use Psalm\Tests\TestConfig;
use Psalm\Type;
use ReflectionException;
use ReflectionFunction;
use ReflectionParameter;
use ReflectionType;

use function array_shift;
use function class_exists;
use function count;
use function explode;
Expand All @@ -37,9 +35,11 @@
use function strncmp;
use function strpos;
use function substr;
use function version_compare;

use const PHP_MAJOR_VERSION;
use const PHP_MINOR_VERSION;
use const PHP_VERSION;

class InternalCallMapHandlerTest extends TestCase
{
Expand Down Expand Up @@ -761,7 +761,7 @@ private function assertParameter(array $normalizedEntry, ReflectionParameter $pa
public function assertEntryReturnType(ReflectionFunction $function, string $entryReturnType): void
{
if (version_compare(PHP_VERSION, '8.1.0', '>=')) {
/** @var \ReflectionType|null $expectedType */
/** @var ReflectionType|null $expectedType */
$expectedType = $function->hasTentativeReturnType() ? $function->getTentativeReturnType() : $function->getReturnType();
} else {
$expectedType = $function->getReturnType();
Expand Down

0 comments on commit 65ffac2

Please sign in to comment.