mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
27 lines
654 B
PHP
27 lines
654 B
PHP
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
class SuperGlobalsTest extends TestCase
|
|
{
|
|
use ValidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return iterable<string,array{code:string,assertions?:array<string,string>,ignored_issues?:list<string>}>
|
|
*/
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
yield 'http_response_headerIsList' => [
|
|
'code' => '<?php
|
|
/** @return list<string> */
|
|
function returnsList(): array {
|
|
return $http_response_header;
|
|
}
|
|
',
|
|
'assertions' => []
|
|
];
|
|
}
|
|
}
|