1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00
This commit is contained in:
Théo FIDRY 2022-12-08 12:27:11 +01:00
parent ba40e34947
commit 5d2b739a4e
No known key found for this signature in database
GPG Key ID: F8C66BC24296DE7E

View File

@ -3,10 +3,9 @@
namespace Psalm\Internal\Analyzer; namespace Psalm\Internal\Analyzer;
use Amp\Loop; use Amp\Loop;
use Fidry\CpuCounter\CpuCoreCounter; use Fidry\CpuCoreCounter\CpuCoreCounter;
use Fidry\CpuCounter\NumberOfCpuCoreNotFound; use Fidry\CpuCoreCounter\NumberOfCpuCoreNotFound;
use InvalidArgumentException; use InvalidArgumentException;
use LogicException;
use Psalm\Codebase; use Psalm\Codebase;
use Psalm\Config; use Psalm\Config;
use Psalm\Context; use Psalm\Context;
@ -55,7 +54,6 @@ use Psalm\Report;
use Psalm\Report\ReportOptions; use Psalm\Report\ReportOptions;
use Psalm\Type; use Psalm\Type;
use ReflectionProperty; use ReflectionProperty;
use RuntimeException;
use UnexpectedValueException; use UnexpectedValueException;
use function array_combine; use function array_combine;
@ -75,25 +73,18 @@ use function end;
use function explode; use function explode;
use function extension_loaded; use function extension_loaded;
use function file_exists; use function file_exists;
use function file_get_contents;
use function filter_var;
use function function_exists;
use function fwrite; use function fwrite;
use function implode; use function implode;
use function in_array; use function in_array;
use function ini_get; use function ini_get;
use function is_dir; use function is_dir;
use function is_file; use function is_file;
use function is_int;
use function is_readable;
use function is_string;
use function microtime; use function microtime;
use function mkdir; use function mkdir;
use function number_format; use function number_format;
use function pcntl_fork; use function pcntl_fork;
use function preg_match; use function preg_match;
use function rename; use function rename;
use function shell_exec;
use function stream_set_blocking; use function stream_set_blocking;
use function stream_socket_accept; use function stream_socket_accept;
use function stream_socket_client; use function stream_socket_client;
@ -102,12 +93,9 @@ use function strlen;
use function strpos; use function strpos;
use function strtolower; use function strtolower;
use function substr; use function substr;
use function substr_count;
use function trim;
use function usort; use function usort;
use function version_compare; use function version_compare;
use const FILTER_VALIDATE_INT;
use const PHP_EOL; use const PHP_EOL;
use const PHP_OS; use const PHP_OS;
use const PHP_VERSION; use const PHP_VERSION;