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

55 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests;
2021-12-04 21:55:53 +01:00
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
class Php55Test extends TestCase
{
2021-12-04 21:55:53 +01:00
use ValidCodeAnalysisTestTrait;
public function providerValidCodeParse(): iterable
{
return [
'finally' => [
'code' => '<?php
try {
}
catch (\Exception $e) {
}
finally {
2017-05-27 02:05:57 +02:00
}',
],
'foreachList' => [
'code' => '<?php
$array = [
[1, 2],
[3, 4],
];
2017-06-29 16:22:49 +02:00
foreach ($array as list($a, $b)) {
echo "A: $a; B: $b\n";
2017-05-27 02:05:57 +02:00
}',
],
'arrayStringDereferencing' => [
'code' => '<?php
$a = [1, 2, 3][0];
$b = "PHP"[0];',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'int',
'$b' => 'string',
2017-05-27 02:05:57 +02:00
],
],
'classString' => [
'code' => '<?php
class ClassName {}
2017-06-29 16:22:49 +02:00
$a = ClassName::class;',
'assertions' => [
'$a' => 'class-string',
2017-05-27 02:05:57 +02:00
],
],
];
}
}