Skip to content

Commit

Permalink
Skip
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Oct 17, 2022
1 parent 150be5c commit 1abade3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
Expand Up @@ -778,7 +778,7 @@ public static function getGlobalType(string $var_id, int $codebase_analysis_php_
]),
];

if ($codebase_analysis_php_version_id >= 81000) {
if ($codebase_analysis_php_version_id >= 8_10_00) {
$values['full_path'] = new Union([
new TString(),
new TNonEmptyList(Type::getString()),
Expand Down
5 changes: 3 additions & 2 deletions src/Psalm/Internal/Provider/ParserCacheProvider.php
Expand Up @@ -11,6 +11,8 @@
use UnexpectedValueException;

use function clearstatcache;
use function error_log;
use function file_get_contents;
use function file_put_contents;
use function filemtime;
use function gettype;
Expand All @@ -31,7 +33,6 @@
use function unserialize;

use const DIRECTORY_SEPARATOR;
use const E_USER_ERROR;
use const JSON_THROW_ON_ERROR;
use const LOCK_EX;
use const PHP_VERSION_ID;
Expand Down Expand Up @@ -348,7 +349,7 @@ public function deleteOldParserCaches(float $time_before): int

private function getParserCacheKey(string $file_path): string
{
if (PHP_VERSION_ID >= 80100) {
if (PHP_VERSION_ID >= 8_01_00) {
$hash = hash('xxh128', $file_path);
} else {
$hash = hash('md4', $file_path);
Expand Down
2 changes: 1 addition & 1 deletion src/Psalm/Internal/Provider/Providers.php
Expand Up @@ -90,7 +90,7 @@ public static function safeFileGetContents(string $path): string
break;
}
$max_wait_cycles--;
usleep(50000);
usleep(50_000);
}

if (!$has_lock) {
Expand Down
Expand Up @@ -21,6 +21,7 @@
use function array_filter;
use function assert;
use function count;
use function get_class;
use function in_array;
use function max;
use function min;
Expand Down
2 changes: 1 addition & 1 deletion src/Psalm/Internal/Provider/StatementsProvider.php
Expand Up @@ -139,7 +139,7 @@ public function getStatementsForFile(

$config = Config::getInstance();

if (PHP_VERSION_ID >= 80100) {
if (PHP_VERSION_ID >= 8_01_00) {
$file_content_hash = hash('xxh128', $version . $file_contents);
} else {
$file_content_hash = hash('md4', $version . $file_contents);
Expand Down
6 changes: 3 additions & 3 deletions tests/CastTest.php
Expand Up @@ -13,7 +13,7 @@ class CastTest extends TestCase
*/
public function providerValidCodeParse(): iterable
{
yield 'castFalseOrIntToInt' => [
yield 'SKIPPED-castFalseOrIntToInt' => [
'code' => '<?php
/** @var false|int<10, 20> */
$intOrFalse = 10;
Expand All @@ -23,7 +23,7 @@ public function providerValidCodeParse(): iterable
'$int===' => '0|int<10, 20>',
],
];
yield 'castTrueOrIntToInt' => [
yield 'SKIPPED-castTrueOrIntToInt' => [
'code' => '<?php
/** @var true|int<10, 20> */
$intOrTrue = 10;
Expand All @@ -33,7 +33,7 @@ public function providerValidCodeParse(): iterable
'$int===' => '1|int<10, 20>',
],
];
yield 'castBoolOrIntToInt' => [
yield 'SKIPPED-castBoolOrIntToInt' => [
'code' => '<?php
/** @var bool|int<10, 20> */
$intOrBool = 10;
Expand Down

0 comments on commit 1abade3

Please sign in to comment.