1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00
psalm/tests/SuperGlobalsTest.php

27 lines
633 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
/**
* @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' => []
];
}
}