mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
82 lines
2.3 KiB
PHP
82 lines
2.3 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()
|
|
{
|
|
return [
|
|
'generator' => [
|
|
'<?php
|
|
/**
|
|
* @param int $start
|
|
* @param int $limit
|
|
* @param int $step
|
|
* @return Generator<int>
|
|
*/
|
|
function xrange($start, $limit, $step = 1) {
|
|
for ($i = $start; $i <= $limit; $i += $step) {
|
|
yield $i;
|
|
}
|
|
}
|
|
|
|
$a = null;
|
|
|
|
/*
|
|
* Note that an array is never created or returned,
|
|
* which saves memory.
|
|
*/
|
|
foreach (xrange(1, 9, 2) as $number) {
|
|
$a = $number;
|
|
}',
|
|
'assertions' => [
|
|
'$a' => 'null|int',
|
|
],
|
|
],
|
|
'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',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|