mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
db45ff1ba4
* add native return types * redundant phpdoc
32 lines
819 B
PHP
32 lines
819 B
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class TraceTest extends TestCase
|
|
{
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
|
*/
|
|
public function providerInvalidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'traceVariable' => [
|
|
'<?php
|
|
/** @psalm-trace $a */
|
|
$a = getmypid();',
|
|
'error_message' => 'Trace',
|
|
],
|
|
'undefinedTraceVariable' => [
|
|
'<?php
|
|
/** @psalm-trace $b */
|
|
echo 1;',
|
|
'error_message' => 'UndefinedTrace',
|
|
'error_levels' => [
|
|
'MixedAssignment',
|
|
],
|
|
]
|
|
];
|
|
}
|
|
}
|