mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
db45ff1ba4
* add native return types * redundant phpdoc
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class Php55Test extends TestCase
|
|
{
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
|
*/
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'finally' => [
|
|
'<?php
|
|
try {
|
|
}
|
|
catch (\Exception $e) {
|
|
}
|
|
finally {
|
|
}',
|
|
],
|
|
'foreachList' => [
|
|
'<?php
|
|
$array = [
|
|
[1, 2],
|
|
[3, 4],
|
|
];
|
|
|
|
foreach ($array as list($a, $b)) {
|
|
echo "A: $a; B: $b\n";
|
|
}',
|
|
],
|
|
'arrayStringDereferencing' => [
|
|
'<?php
|
|
$a = [1, 2, 3][0];
|
|
$b = "PHP"[0];',
|
|
'assertions' => [
|
|
'$a' => 'int',
|
|
'$b' => 'string',
|
|
],
|
|
],
|
|
'classString' => [
|
|
'<?php
|
|
class ClassName {}
|
|
|
|
$a = ClassName::class;',
|
|
'assertions' => [
|
|
'$a' => 'class-string',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|