2016-10-20 06:13:35 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class Php55Test extends TestCase
|
2016-10-20 06:13:35 +02:00
|
|
|
{
|
2018-11-06 03:57:36 +01:00
|
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
2016-10-20 06:13:35 +02:00
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2019-03-01 21:55:20 +01:00
|
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerValidCodeParse(): iterable
|
2016-10-20 06:13:35 +02:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
|
|
|
'finally' => [
|
|
|
|
'<?php
|
|
|
|
try {
|
|
|
|
}
|
|
|
|
catch (\Exception $e) {
|
|
|
|
}
|
|
|
|
finally {
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'foreachList' => [
|
|
|
|
'<?php
|
|
|
|
$array = [
|
|
|
|
[1, 2],
|
|
|
|
[3, 4],
|
|
|
|
];
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
foreach ($array as list($a, $b)) {
|
|
|
|
echo "A: $a; B: $b\n";
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'arrayStringDereferencing' => [
|
|
|
|
'<?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
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'classString' => [
|
|
|
|
'<?php
|
|
|
|
class ClassName {}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
$a = ClassName::class;',
|
|
|
|
'assertions' => [
|
2018-03-05 22:06:06 +01:00
|
|
|
'$a' => 'class-string',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
|
|
|
],
|
2016-10-20 06:13:35 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|