mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Tests\FileManipulation;
|
|
|
|
class RedundantCastManipulationTest extends FileManipulationTestCase
|
|
{
|
|
public function providerValidCodeParse(): array
|
|
{
|
|
return [
|
|
'RemoveRedundantCast' => [
|
|
'input' => '<?php
|
|
$test = 1;
|
|
(int)$test;
|
|
',
|
|
'output' => '<?php
|
|
$test = 1;
|
|
$test;
|
|
',
|
|
'php_version' => '5.6',
|
|
'issues_to_fix' => ['RedundantCast'],
|
|
'safe_types' => true,
|
|
],
|
|
'RemoveRedundantCastGivenDocblockType' => [
|
|
'input' => '<?php
|
|
/** @param int $test */
|
|
function a($test){
|
|
(int)$test;
|
|
}
|
|
|
|
',
|
|
'output' => '<?php
|
|
/** @param int $test */
|
|
function a($test){
|
|
$test;
|
|
}
|
|
|
|
',
|
|
'php_version' => '5.6',
|
|
'issues_to_fix' => ['RedundantCastGivenDocblockType'],
|
|
'safe_types' => true,
|
|
],
|
|
];
|
|
}
|
|
}
|