1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-05 20:48:45 +01:00
psalm/tests/SuperGlobalsTest.php

33 lines
777 B
PHP
Raw Normal View History

2021-09-08 21:41:23 +02:00
<?php
namespace Psalm\Tests;
2021-12-04 21:55:53 +01:00
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
2021-09-08 21:41:23 +02:00
class SuperGlobalsTest extends TestCase
{
2021-12-04 21:55:53 +01:00
use ValidCodeAnalysisTestTrait;
2021-09-08 21:41:23 +02:00
public function providerValidCodeParse(): iterable
{
yield 'http_response_headerIsList' => [
'code' => '<?php
2021-09-08 21:41:23 +02:00
/** @return list<string> */
function returnsList(): array {
return $http_response_header;
}
',
2022-12-18 17:15:15 +01:00
'assertions' => [],
2021-09-08 21:41:23 +02:00
];
yield 'ENV has scalar entries only' => [
2022-11-08 10:45:21 +01:00
'code' => '<?php
/** @return array<array-key, scalar> */
function f(): array {
return $_ENV;
}
2022-12-18 17:15:15 +01:00
',
];
2021-09-08 21:41:23 +02:00
}
}