1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/Php55Test.php

55 lines
1.3 KiB
PHP

<?php
namespace Psalm\Tests;
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
class Php55Test extends TestCase
{
use ValidCodeAnalysisTestTrait;
public function providerValidCodeParse(): iterable
{
return [
'finally' => [
'code' => '<?php
try {
}
catch (\Exception $e) {
}
finally {
}',
],
'foreachList' => [
'code' => '<?php
$array = [
[1, 2],
[3, 4],
];
foreach ($array as list($a, $b)) {
echo "A: $a; B: $b\n";
}',
],
'arrayStringDereferencing' => [
'code' => '<?php
$a = [1, 2, 3][0];
$b = "PHP"[0];',
'assertions' => [
'$a' => 'int',
'$b' => 'string',
],
],
'classString' => [
'code' => '<?php
class ClassName {}
$a = ClassName::class;',
'assertions' => [
'$a' => 'class-string',
],
],
];
}
}