2021-09-09 16:04:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2021-12-04 21:55:53 +01:00
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
|
2021-09-09 16:04:12 +02:00
|
|
|
class CoreStubsTest extends TestCase
|
|
|
|
{
|
2021-12-04 21:55:53 +01:00
|
|
|
use ValidCodeAnalysisTestTrait;
|
2021-09-09 16:04:12 +02:00
|
|
|
|
|
|
|
/**
|
2022-01-13 20:38:17 +01:00
|
|
|
* @return iterable<string,array{code:string,assertions?:array<string,string>,ignored_issues?:list<string>}>
|
2021-09-09 16:04:12 +02:00
|
|
|
*/
|
|
|
|
public function providerValidCodeParse(): iterable
|
|
|
|
{
|
|
|
|
yield 'RecursiveArrayIterator::CHILD_ARRAYS_ONLY (#6464)' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-09-09 16:04:12 +02:00
|
|
|
|
|
|
|
new RecursiveArrayIterator([], RecursiveArrayIterator::CHILD_ARRAYS_ONLY);'
|
|
|
|
];
|
2022-01-20 13:54:37 +01:00
|
|
|
yield 'proc_open() named arguments' => [
|
|
|
|
'<?php
|
|
|
|
|
|
|
|
proc_open(
|
|
|
|
command: "ls",
|
|
|
|
descriptor_spec: [],
|
|
|
|
pipes: $pipes,
|
|
|
|
cwd: null,
|
|
|
|
env_vars: null,
|
|
|
|
options: null
|
|
|
|
);',
|
|
|
|
'assertions' => [],
|
|
|
|
'error_levels' => [],
|
|
|
|
'php_version' => '8.0',
|
|
|
|
];
|
2021-09-09 16:04:12 +02:00
|
|
|
}
|
|
|
|
}
|