1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 12:24:49 +01:00
psalm/tests/FileManipulation/ParamNameMismatchTest.php
Ben Davies d31dc663b9
Split unit test over multiple jobs in GitHub Actions, lowering the total run time (#4985)
* Split unit test over multiple jobs in GitHub Actions, lowering the total run time

* rename FileManipulationTest to FileManipulationTestCase so it does not run as a standalone Test
2021-01-29 11:47:31 +01:00

131 lines
4.5 KiB
PHP

<?php
namespace Psalm\Tests\FileManipulation;
class ParamNameMismatchTest extends FileManipulationTestCase
{
/**
* @return array<string,array{string,string,string,string[],bool}>
*/
public function providerValidCodeParse(): array
{
return [
'fixMismatchingParamName74' => [
'<?php
class A {
public function foo(string $str, bool $b = false) : void {}
}
class AChild extends A {
public function foo(string $string, bool $b = false) : void {
$str = $string;
$string = $string === "hello" ? "foo" : "bar";
echo $string;
echo $str;
}
}',
'<?php
class A {
public function foo(string $str, bool $b = false) : void {}
}
class AChild extends A {
public function foo(string $str, bool $b = false) : void {
$str_new = $str;
$str = $str === "hello" ? "foo" : "bar";
echo $str;
echo $str_new;
}
}',
'7.1',
['ParamNameMismatch'],
true,
],
'fixIfNewNameAlreadyExists74' => [
'<?php
class A {
public function foo(string $str, bool $b = false) : void {}
}
class AChild extends A {
public function foo(string $string, bool $b = false) : void {
$str_new = $string;
}
}',
'<?php
class A {
public function foo(string $str, bool $b = false) : void {}
}
class AChild extends A {
public function foo(string $str, bool $b = false) : void {
$str_new = $str;
}
}',
'7.1',
['ParamNameMismatch'],
true,
],
'noFixIfNewNameAndOldNameAlreadyExists74' => [
'<?php
class A {
public function foo(string $str, bool $b = false) : void {}
}
class AChild extends A {
public function foo(string $string, bool $b = false) : void {
$str = $string;
$str_new = $string;
}
}',
'<?php
class A {
public function foo(string $str, bool $b = false) : void {}
}
class AChild extends A {
public function foo(string $string, bool $b = false) : void {
$str = $string;
$str_new = $string;
}
}',
'7.1',
['ParamNameMismatch'],
true,
],
'fixMismatchingParamNameWithDocblockType74' => [
'<?php
class A {
/**
* @param string $str
*/
public function foo($str, bool $b = false) : void {}
}
class AChild extends A {
/**
* @param string $string
*/
public function foo($string, bool $b = false) : void {}
}',
'<?php
class A {
/**
* @param string $str
*/
public function foo($str, bool $b = false) : void {}
}
class AChild extends A {
/**
* @param string $str
*/
public function foo($str, bool $b = false) : void {}
}',
'7.1',
['ParamNameMismatch'],
true,
],
];
}
}