1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/FileUpdates/ErrorFixTest.php

478 lines
18 KiB
PHP
Raw Normal View History

2018-10-17 21:52:58 +02:00
<?php
2023-10-19 13:12:06 +02:00
declare(strict_types=1);
2018-10-17 21:52:58 +02:00
namespace Psalm\Tests\FileUpdates;
2021-12-03 20:11:20 +01:00
use Psalm\Config;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Analyzer\ProjectAnalyzer;
use Psalm\Internal\Provider\FakeFileProvider;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Provider\Providers;
2021-12-03 20:11:20 +01:00
use Psalm\IssueBuffer;
2021-12-04 21:55:53 +01:00
use Psalm\Tests\Internal\Provider\FakeFileReferenceCacheProvider;
2021-12-03 20:11:20 +01:00
use Psalm\Tests\Internal\Provider\ParserInstanceCacheProvider;
use Psalm\Tests\Internal\Provider\ProjectCacheProvider;
use Psalm\Tests\TestCase;
2019-03-23 19:27:54 +01:00
use Psalm\Tests\TestConfig;
2018-10-17 21:52:58 +02:00
2021-06-08 04:55:21 +02:00
use function array_keys;
use function count;
use function getcwd;
use const DIRECTORY_SEPARATOR;
2021-12-03 20:11:20 +01:00
class ErrorFixTest extends TestCase
2018-10-17 21:52:58 +02:00
{
public function setUp(): void
2018-10-17 21:52:58 +02:00
{
parent::setUp();
$this->file_provider = new FakeFileProvider();
2018-10-17 21:52:58 +02:00
$config = new TestConfig();
$config->throw_exception = false;
$providers = new Providers(
$this->file_provider,
2021-12-03 20:11:20 +01:00
new ParserInstanceCacheProvider(),
2018-10-17 21:52:58 +02:00
null,
null,
2021-12-04 21:55:53 +01:00
new FakeFileReferenceCacheProvider(),
2022-12-18 17:15:15 +01:00
new ProjectCacheProvider(),
2018-10-17 21:52:58 +02:00
);
2018-11-11 18:01:14 +01:00
$this->project_analyzer = new ProjectAnalyzer(
2018-10-17 21:52:58 +02:00
$config,
2022-12-18 17:15:15 +01:00
$providers,
2018-10-17 21:52:58 +02:00
);
$this->project_analyzer->setPhpVersion('7.3', 'tests');
2018-10-17 21:52:58 +02:00
}
/**
* @dataProvider providerTestErrorFix
2019-05-23 18:53:46 +02:00
* @param array<int, array<string, string>> $files
2018-10-17 21:52:58 +02:00
* @param array<int, int> $error_counts
Add support for strict arrays, fix type alias intersection, fix array_is_list assertion on non-lists (#8395) * Immutable CodeLocation * Remove excess clones * Remove external clones * Remove leftover clones * Fix final clone issue * Immutable storages * Refactoring * Fixes * Fixes * Fix * Fix * Fixes * Simplify * Fixes * Fix * Fixes * Update * Fix * Cache global types * Fix * Update * Update * Fixes * Fixes * Refactor * Fixes * Fix * Fix * More caching * Fix * Fix * Update * Update * Fix * Fixes * Update * Refactor * Update * Fixes * Break one more test * Fix * FIx * Fix * Fix * Fix * Fix * Improve performance and readability * Equivalent logic * Fixes * Revert * Revert "Revert" This reverts commit f9175100c8452c80559234200663fd4c4f4dd889. * Fix * Fix reference bug * Make default TypeVisitor immutable * Bugfix * Remove clones * Partial refactoring * Refactoring * Fixes * Fix * Fixes * Fixes * cs-fix * Fix final bugs * Add test * Misc fixes * Update * Fixes * Experiment with removing different property * revert "Experiment with removing different property" This reverts commit ac1156e077fc4ea633530d51096d27b6e88bfdf9. * Uniform naming * Uniform naming * Hack hotfix * Clean up $_FILES ref #8621 * Undo hack, try fixing properly * Helper method * Remove redundant call * Partially fix bugs * Cleanup * Change defaults * Fix bug * Fix (?, hope this doesn't break anything else) * cs-fix * Review fixes * Bugfix * Bugfix * Improve logic * Add support for list{} and callable-list{} types, properly implement array_is_list assertions (fixes #8389) * Default to sealed arrays * Fix array_merge bug * Fixes * Fix * Sealed type checks * Properly infer properties-of and get_object_vars on final classes * Fix array_map zipping * Fix tests * Fixes * Fixes * Fix more stuff * Recursively resolve type aliases * Fix typo * Fixes * Fix array_is_list assertion on keyed array * Add BC docs * Fixes * fix * Update * Update * Update * Update * Seal arrays with count assertions * Fix #8528 * Fix * Update * Improve sealed array foreach logic * get_object_vars on template properties * Fix sealed array assertion reconciler logic * Improved reconciler * Add tests * Single source of truth for test types * Fix tests * Fixup tests * Fixup tests * Fixup tests * Update * Fix tests * Fix tests * Final fixes * Fixes * Use list syntax only when needed * Fix tests * Cs-fix * Update docs * Update docs * Update docs * Update docs * Update docs * Document missing types * Update docs * Improve class-string-map docs * Update * Update * I love working on psalm :) * Keep arrays unsealed by default * Fixup tests * Fix syntax mistake * cs-fix * Fix typo * Re-import missing types * Keep strict types only in return types * argc/argv fixes * argc/argv fixes * Fix test * Comment-out valinor code, pinging @romm pls merge https://github.com/CuyZ/Valinor/pull/246 so we can add valinor to the psalm docs :)
2022-11-05 22:34:42 +01:00
* @param array<string, string> $ignored_issues
2018-10-17 21:52:58 +02:00
*/
public function testErrorFix(
2019-05-23 18:53:46 +02:00
array $files,
2018-10-17 21:52:58 +02:00
array $error_counts,
2023-07-24 10:48:32 +02:00
array $ignored_issues = [],
): void {
2018-11-11 18:01:14 +01:00
$this->project_analyzer->getCodebase()->diff_methods = true;
2018-10-17 21:52:58 +02:00
2018-11-11 18:01:14 +01:00
$codebase = $this->project_analyzer->getCodebase();
2018-10-17 21:52:58 +02:00
$config = $codebase->config;
Add support for strict arrays, fix type alias intersection, fix array_is_list assertion on non-lists (#8395) * Immutable CodeLocation * Remove excess clones * Remove external clones * Remove leftover clones * Fix final clone issue * Immutable storages * Refactoring * Fixes * Fixes * Fix * Fix * Fixes * Simplify * Fixes * Fix * Fixes * Update * Fix * Cache global types * Fix * Update * Update * Fixes * Fixes * Refactor * Fixes * Fix * Fix * More caching * Fix * Fix * Update * Update * Fix * Fixes * Update * Refactor * Update * Fixes * Break one more test * Fix * FIx * Fix * Fix * Fix * Fix * Improve performance and readability * Equivalent logic * Fixes * Revert * Revert "Revert" This reverts commit f9175100c8452c80559234200663fd4c4f4dd889. * Fix * Fix reference bug * Make default TypeVisitor immutable * Bugfix * Remove clones * Partial refactoring * Refactoring * Fixes * Fix * Fixes * Fixes * cs-fix * Fix final bugs * Add test * Misc fixes * Update * Fixes * Experiment with removing different property * revert "Experiment with removing different property" This reverts commit ac1156e077fc4ea633530d51096d27b6e88bfdf9. * Uniform naming * Uniform naming * Hack hotfix * Clean up $_FILES ref #8621 * Undo hack, try fixing properly * Helper method * Remove redundant call * Partially fix bugs * Cleanup * Change defaults * Fix bug * Fix (?, hope this doesn't break anything else) * cs-fix * Review fixes * Bugfix * Bugfix * Improve logic * Add support for list{} and callable-list{} types, properly implement array_is_list assertions (fixes #8389) * Default to sealed arrays * Fix array_merge bug * Fixes * Fix * Sealed type checks * Properly infer properties-of and get_object_vars on final classes * Fix array_map zipping * Fix tests * Fixes * Fixes * Fix more stuff * Recursively resolve type aliases * Fix typo * Fixes * Fix array_is_list assertion on keyed array * Add BC docs * Fixes * fix * Update * Update * Update * Update * Seal arrays with count assertions * Fix #8528 * Fix * Update * Improve sealed array foreach logic * get_object_vars on template properties * Fix sealed array assertion reconciler logic * Improved reconciler * Add tests * Single source of truth for test types * Fix tests * Fixup tests * Fixup tests * Fixup tests * Update * Fix tests * Fix tests * Final fixes * Fixes * Use list syntax only when needed * Fix tests * Cs-fix * Update docs * Update docs * Update docs * Update docs * Update docs * Document missing types * Update docs * Improve class-string-map docs * Update * Update * I love working on psalm :) * Keep arrays unsealed by default * Fixup tests * Fix syntax mistake * cs-fix * Fix typo * Re-import missing types * Keep strict types only in return types * argc/argv fixes * argc/argv fixes * Fix test * Comment-out valinor code, pinging @romm pls merge https://github.com/CuyZ/Valinor/pull/246 so we can add valinor to the psalm docs :)
2022-11-05 22:34:42 +01:00
foreach ($ignored_issues as $error_type => $error_level) {
2018-10-17 21:52:58 +02:00
$config->setCustomErrorLevel($error_type, $error_level);
}
2020-09-03 22:51:43 +02:00
$analyzed_files = [];
2019-07-05 22:24:00 +02:00
for ($i = 0; $i < count($files); ++$i) {
2019-05-23 18:53:46 +02:00
$batch = $files[$i];
2018-10-17 21:52:58 +02:00
2019-05-23 18:53:46 +02:00
foreach ($batch as $file_path => $contents) {
$this->file_provider->registerFile($file_path, $contents);
2018-10-17 21:52:58 +02:00
2020-09-03 22:51:43 +02:00
if (!isset($analyzed_files[$file_path])) {
2019-05-23 18:53:46 +02:00
$codebase->addFilesToAnalyze([$file_path => $file_path]);
2020-09-03 22:51:43 +02:00
$analyzed_files[$file_path] = true;
2019-05-23 18:53:46 +02:00
}
}
2018-10-17 21:52:58 +02:00
2019-05-23 18:53:46 +02:00
if ($i === 0) {
$codebase->scanFiles();
} else {
$codebase->reloadFiles($this->project_analyzer, array_keys($batch));
}
2018-10-17 21:52:58 +02:00
2019-05-23 18:53:46 +02:00
$codebase->analyzer->analyzeFiles($this->project_analyzer, 1, false);
2018-10-17 21:52:58 +02:00
$expected_count = 0;
2021-12-03 20:11:20 +01:00
$data = IssueBuffer::clear();
2018-10-17 21:52:58 +02:00
foreach ($data as $file_issues) {
$expected_count += count($file_issues);
}
$this->assertSame($error_counts[$i], $expected_count);
2018-10-17 21:52:58 +02:00
}
}
/**
* @return array<string,array{files: array<int, array<string,string>>,error_counts:array<int,int>,ignored_issues?:array<string,string>}>
2018-10-17 21:52:58 +02:00
*/
public function providerTestErrorFix(): array
2018-10-17 21:52:58 +02:00
{
return [
'fixMissingColonSyntaxError' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
public function foo() : void {
$a = 5;
echo $a;
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
public function foo() : void {
$a = 5
echo $a;
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
public function foo() : void {
$a = 5;
echo $a;
}
}',
],
2018-10-17 21:52:58 +02:00
],
'error_counts' => [0, 1, 0],
],
'addReturnTypesToSingleMethod' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
public function foo() {
return 5;
}
public function bar() {
return $this->foo();
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
public function foo() : int {
return 5;
}
public function bar() {
return $this->foo();
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
public function foo() : int {
return 5;
}
public function bar() : int {
return $this->foo();
}
}',
],
2018-10-17 21:52:58 +02:00
],
'error_counts' => [2, 1, 0],
Add support for strict arrays, fix type alias intersection, fix array_is_list assertion on non-lists (#8395) * Immutable CodeLocation * Remove excess clones * Remove external clones * Remove leftover clones * Fix final clone issue * Immutable storages * Refactoring * Fixes * Fixes * Fix * Fix * Fixes * Simplify * Fixes * Fix * Fixes * Update * Fix * Cache global types * Fix * Update * Update * Fixes * Fixes * Refactor * Fixes * Fix * Fix * More caching * Fix * Fix * Update * Update * Fix * Fixes * Update * Refactor * Update * Fixes * Break one more test * Fix * FIx * Fix * Fix * Fix * Fix * Improve performance and readability * Equivalent logic * Fixes * Revert * Revert "Revert" This reverts commit f9175100c8452c80559234200663fd4c4f4dd889. * Fix * Fix reference bug * Make default TypeVisitor immutable * Bugfix * Remove clones * Partial refactoring * Refactoring * Fixes * Fix * Fixes * Fixes * cs-fix * Fix final bugs * Add test * Misc fixes * Update * Fixes * Experiment with removing different property * revert "Experiment with removing different property" This reverts commit ac1156e077fc4ea633530d51096d27b6e88bfdf9. * Uniform naming * Uniform naming * Hack hotfix * Clean up $_FILES ref #8621 * Undo hack, try fixing properly * Helper method * Remove redundant call * Partially fix bugs * Cleanup * Change defaults * Fix bug * Fix (?, hope this doesn't break anything else) * cs-fix * Review fixes * Bugfix * Bugfix * Improve logic * Add support for list{} and callable-list{} types, properly implement array_is_list assertions (fixes #8389) * Default to sealed arrays * Fix array_merge bug * Fixes * Fix * Sealed type checks * Properly infer properties-of and get_object_vars on final classes * Fix array_map zipping * Fix tests * Fixes * Fixes * Fix more stuff * Recursively resolve type aliases * Fix typo * Fixes * Fix array_is_list assertion on keyed array * Add BC docs * Fixes * fix * Update * Update * Update * Update * Seal arrays with count assertions * Fix #8528 * Fix * Update * Improve sealed array foreach logic * get_object_vars on template properties * Fix sealed array assertion reconciler logic * Improved reconciler * Add tests * Single source of truth for test types * Fix tests * Fixup tests * Fixup tests * Fixup tests * Update * Fix tests * Fix tests * Final fixes * Fixes * Use list syntax only when needed * Fix tests * Cs-fix * Update docs * Update docs * Update docs * Update docs * Update docs * Document missing types * Update docs * Improve class-string-map docs * Update * Update * I love working on psalm :) * Keep arrays unsealed by default * Fixup tests * Fix syntax mistake * cs-fix * Fix typo * Re-import missing types * Keep strict types only in return types * argc/argv fixes * argc/argv fixes * Fix test * Comment-out valinor code, pinging @romm pls merge https://github.com/CuyZ/Valinor/pull/246 so we can add valinor to the psalm docs :)
2022-11-05 22:34:42 +01:00
'ignored_issues' => [
2021-12-03 20:11:20 +01:00
'MissingReturnType' => Config::REPORT_INFO,
2019-03-23 19:27:54 +01:00
],
2018-10-17 21:52:58 +02:00
],
'traitMethodRenameFirstCorrect' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
trait T {
public function bat() : string {
return "hello";
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
],
2020-11-08 17:04:39 +01:00
'error_counts' => [0, 2, 0],
],
'traitMethodRenameFirstError' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
trait T {
public function bat() : string {
return "hello";
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
class A {
use T;
public function foo() : void {
echo $this->bar();
}
}',
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
2019-05-23 18:53:46 +02:00
namespace Foo;
trait T {
public function bar() : string {
return "hello";
}
}',
],
],
2020-11-08 17:04:39 +01:00
'error_counts' => [2, 0, 0],
],
'addSuppressions' => [
2019-05-23 18:53:46 +02:00
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
class C {
public function foo(array $a) : void {
foreach ($a as $b) {
$b->bar();
}
}
2019-05-23 18:53:46 +02:00
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
class C {
public function foo(array $a) : void {
/**
* @psalm-suppress MixedAssignment
*/
foreach ($a as $b) {
$b->bar();
}
}
2019-05-23 18:53:46 +02:00
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-05-23 18:53:46 +02:00
class C {
public function foo(array $a) : void {
/**
2019-05-23 18:53:46 +02:00
* @psalm-suppress MixedAssignment
*/
2019-05-23 18:53:46 +02:00
foreach ($a as $b) {
/**
* @psalm-suppress MixedMethodCall
*/
$b->bar();
}
}
2019-05-23 18:53:46 +02:00
}',
],
],
'error_counts' => [2, 1, 0],
],
2019-06-13 17:32:45 +02:00
'fixDefault' => [
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-06-13 17:32:45 +02:00
class C {
/** @var string */
public $foo = 5;
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2019-06-13 17:32:45 +02:00
class C {
/** @var string */
public $foo = "hello";
}',
],
],
'error_counts' => [1, 0],
],
2020-09-03 22:51:43 +02:00
'changeContent' => [
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
2020-09-03 22:51:43 +02:00
function add(int $a, int $b): int {
return $a + $b;
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'B.php' => '<?php
2020-09-03 22:51:43 +02:00
function hasMethod(object $input, string $method): bool {
return (new ReflectionClass($input))
->hasMethod($method);
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'C.php' => '<?php
2020-09-03 22:51:43 +02:00
function add(int $a, int $b): int {
return $a + $b;
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'D.php' => '<?php
2020-09-03 22:51:43 +02:00
function hasMethod(object $input, string $method): bool {
return (new ReflectionClass($input))
->hasMethod($method);
}',
],
],
'error_counts' => [0, 0, 0, 0],
],
'missingConstructorForTwoVars' => [
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class A {
protected int $x;
protected int $y;
2022-12-18 17:15:15 +01:00
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
class A {
protected int $x = 0;
protected int $y;
2022-12-18 17:15:15 +01:00
}',
],
],
'error_counts' => [2, 1],
],
'missingConstructorForInheritedProperties' => [
'files' => [
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
abstract class A {
public int $x;
public int $y;
}
class B extends A {
public function __construct() {}
2022-12-18 17:15:15 +01:00
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
abstract class A {
public int $x = 0;
public int $y;
}
class B extends A {
public function __construct() {}
2022-12-18 17:15:15 +01:00
}',
],
[
2023-10-09 22:40:21 +02:00
(string) getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
abstract class A {
public int $x = 0;
public int $y = 0;
}
class B extends A {
public function __construct() {}
2022-12-18 17:15:15 +01:00
}',
],
],
'error_counts' => [2, 1, 0],
],
2018-10-17 21:52:58 +02:00
];
}
}