mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 13:51:54 +01:00
f439d6550b
* Transformation that updates assertions * Simplify transformation * Ensure that all tests have keys * Fix a few remaining keys
23 lines
558 B
PHP
23 lines
558 B
PHP
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
class CoreStubsTest extends TestCase
|
|
{
|
|
use ValidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return iterable<string,array{code:string,assertions?:array<string,string>,ignored_issues?:array<string>}>
|
|
*/
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
yield 'RecursiveArrayIterator::CHILD_ARRAYS_ONLY (#6464)' => [
|
|
'code' => '<?php
|
|
|
|
new RecursiveArrayIterator([], RecursiveArrayIterator::CHILD_ARRAYS_ONLY);'
|
|
];
|
|
}
|
|
}
|