1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/SuperGlobalsTest.php
Bruce Weirdan beb0476eed
Added test
2021-09-08 22:41:23 +03:00

25 lines
588 B
PHP

<?php
namespace Psalm\Tests;
class SuperGlobalsTest extends TestCase
{
use Traits\ValidCodeAnalysisTestTrait;
/**
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
*/
public function providerValidCodeParse(): iterable
{
yield 'http_response_headerIsList' => [
'<?php
/** @return list<string> */
function returnsList(): array {
return $http_response_header;
}
',
'assertions' => []
];
}
}