1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/Php55Test.php
2017-06-29 10:22:49 -04:00

82 lines
2.2 KiB
PHP

<?php
namespace Psalm\Tests;
class Php55Test extends TestCase
{
use Traits\FileCheckerValidCodeParseTestTrait;
/**
* @return array
*/
public function providerFileCheckerValidCodeParse()
{
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' => 'string',
],
],
];
}
}