1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

code style

This commit is contained in:
kkmuffme 2023-06-30 17:14:13 +02:00
parent 26eb870e47
commit 09a3b4b32c

View File

@ -6,13 +6,10 @@ use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\Plugin\EventHandler\Event\FunctionReturnTypeProviderEvent;
use Psalm\Plugin\EventHandler\FunctionReturnTypeProviderInterface;
use Psalm\Type;
use Psalm\Type\Atomic\TNull;
use Psalm\Type\Atomic\TString;
use Psalm\Type\Union;
use function call_user_func;
use function count;
use function in_array;
/**
* @internal
@ -43,7 +40,7 @@ class StrReplaceReturnTypeProvider implements FunctionReturnTypeProviderInterfac
}
if ($subject_type = $statements_source->node_data->getType($call_args[2]->value)) {
if ( !$subject_type->isSingleStringLiteral()) {
if (!$subject_type->isSingleStringLiteral()) {
return null;
}