mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
872f1c232c
* allow Psalter to fix RedundantCast * fix test
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
namespace Psalm\Tests\FileManipulation;
|
|
|
|
class RedundantCastManipulationTest extends FileManipulationTestCase
|
|
{
|
|
/**
|
|
* @return array<string,array{string,string,string,string[],bool,5?:bool}>
|
|
*/
|
|
public function providerValidCodeParse(): array
|
|
{
|
|
return [
|
|
'RemoveRedundantCast' => [
|
|
'<?php
|
|
$test = 1;
|
|
(int)$test;
|
|
',
|
|
'<?php
|
|
$test = 1;
|
|
$test;
|
|
',
|
|
'5.6',
|
|
['RedundantCast'],
|
|
true,
|
|
],
|
|
'RemoveRedundantCastGivenDocblockType' => [
|
|
'<?php
|
|
/** @param int $test */
|
|
function a($test){
|
|
(int)$test;
|
|
}
|
|
|
|
',
|
|
'<?php
|
|
/** @param int $test */
|
|
function a($test){
|
|
$test;
|
|
}
|
|
|
|
',
|
|
'5.6',
|
|
['RedundantCastGivenDocblockType'],
|
|
true,
|
|
],
|
|
];
|
|
}
|
|
}
|