2018-09-28 22:18:45 +02:00
|
|
|
<?php
|
2018-10-10 22:24:10 +02:00
|
|
|
namespace Psalm\Tests\FileUpdates;
|
2018-09-28 22:18:45 +02:00
|
|
|
|
|
|
|
use Psalm\Checker\FileChecker;
|
|
|
|
use Psalm\Checker\ProjectChecker;
|
|
|
|
use Psalm\Provider\Providers;
|
2018-10-10 22:24:10 +02:00
|
|
|
use Psalm\Tests\TestConfig;
|
|
|
|
use Psalm\Tests\Provider;
|
2018-09-28 22:18:45 +02:00
|
|
|
|
2018-10-10 22:24:10 +02:00
|
|
|
class CorrectMethodTest extends \Psalm\Tests\TestCase
|
2018-09-28 22:18:45 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
FileChecker::clearCache();
|
|
|
|
|
|
|
|
$this->file_provider = new \Psalm\Tests\Provider\FakeFileProvider();
|
|
|
|
|
|
|
|
$config = new TestConfig();
|
|
|
|
|
|
|
|
$providers = new Providers(
|
|
|
|
$this->file_provider,
|
2018-09-30 05:51:06 +02:00
|
|
|
new \Psalm\Tests\Provider\ParserInstanceCacheProvider(),
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
new Provider\FakeFileReferenceCacheProvider()
|
2018-09-28 22:18:45 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->project_checker = new ProjectChecker(
|
|
|
|
$config,
|
|
|
|
$providers,
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
ProjectChecker::TYPE_CONSOLE,
|
|
|
|
1,
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->project_checker->infer_types_from_usage = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-09-30 05:51:06 +02:00
|
|
|
* @dataProvider providerTestValidUpdates
|
2018-09-28 22:18:45 +02:00
|
|
|
*
|
|
|
|
* @param array<string, string> $start_files
|
|
|
|
* @param array<string, string> $end_files
|
|
|
|
* @param array<string, string> $error_levels
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testValidInclude(
|
|
|
|
array $start_files,
|
|
|
|
array $end_files,
|
|
|
|
array $initial_correct_methods,
|
|
|
|
array $unaffected_correct_methods,
|
|
|
|
array $error_levels = []
|
|
|
|
) {
|
2018-10-03 23:11:08 +02:00
|
|
|
$test_name = $this->getTestName();
|
|
|
|
if (strpos($test_name, 'SKIPPED-') !== false) {
|
|
|
|
$this->markTestSkipped('Skipped due to a bug.');
|
|
|
|
}
|
|
|
|
|
2018-10-07 06:42:25 +02:00
|
|
|
$this->project_checker->diff_methods = true;
|
2018-09-28 22:18:45 +02:00
|
|
|
|
|
|
|
$codebase = $this->project_checker->getCodebase();
|
|
|
|
|
|
|
|
$config = $codebase->config;
|
2018-10-17 21:52:58 +02:00
|
|
|
$config->throw_exception = false;
|
2018-09-28 22:18:45 +02:00
|
|
|
|
2018-09-28 23:51:00 +02:00
|
|
|
foreach ($error_levels as $error_type => $error_level) {
|
|
|
|
$config->setCustomErrorLevel($error_type, $error_level);
|
2018-09-28 22:18:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($start_files as $file_path => $contents) {
|
|
|
|
$this->file_provider->registerFile($file_path, $contents);
|
|
|
|
$codebase->addFilesToAnalyze([$file_path => $file_path]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$codebase->scanFiles();
|
|
|
|
|
|
|
|
$this->assertSame([], $codebase->analyzer->getCorrectMethods());
|
|
|
|
|
|
|
|
$codebase->analyzer->analyzeFiles($this->project_checker, 1, false);
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
$initial_correct_methods,
|
2018-09-30 05:51:06 +02:00
|
|
|
$codebase->analyzer->getCorrectMethods()
|
2018-09-28 22:18:45 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($end_files as $file_path => $contents) {
|
|
|
|
$this->file_provider->registerFile($file_path, $contents);
|
|
|
|
}
|
|
|
|
|
|
|
|
$codebase->reloadFiles($this->project_checker, array_keys($end_files));
|
|
|
|
|
2018-09-30 05:51:06 +02:00
|
|
|
foreach ($end_files as $file_path => $_) {
|
|
|
|
$codebase->addFilesToAnalyze([$file_path => $file_path]);
|
|
|
|
}
|
2018-09-28 22:18:45 +02:00
|
|
|
|
|
|
|
$codebase->scanFiles();
|
|
|
|
$codebase->analyzer->loadCachedResults($this->project_checker);
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
$unaffected_correct_methods,
|
|
|
|
$codebase->analyzer->getCorrectMethods()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-09-30 05:51:06 +02:00
|
|
|
public function providerTestValidUpdates()
|
2018-09-28 22:18:45 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'basicRequire' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A{
|
|
|
|
public function fooFoo(): void {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
2018-09-28 23:51:00 +02:00
|
|
|
|
|
|
|
public function noReturnType() {}
|
2018-09-28 22:18:45 +02:00
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A{
|
|
|
|
public function fooFoo(?string $foo = null): void {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
2018-09-28 23:51:00 +02:00
|
|
|
|
|
|
|
public function noReturnType() {}
|
2018-09-28 22:18:45 +02:00
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::foofoo' => 1,
|
|
|
|
'foo\a::barbar' => 1,
|
2018-09-28 22:18:45 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
|
|
|
'foo\b::noreturntype' => 1,
|
2018-09-28 22:18:45 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar' => 1
|
2018-09-28 22:18:45 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
|
|
|
'foo\b::noreturntype' => 1,
|
2018-09-28 22:18:45 +02:00
|
|
|
],
|
|
|
|
],
|
2018-09-28 23:51:00 +02:00
|
|
|
[
|
|
|
|
'MissingReturnType' => \Psalm\Config::REPORT_INFO,
|
|
|
|
]
|
2018-09-28 22:18:45 +02:00
|
|
|
],
|
2018-09-30 17:33:40 +02:00
|
|
|
'invalidateAfterPropertyChange' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $foo = "bar";
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return (new A)->foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var int */
|
|
|
|
public $foo = 5;
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return (new A)->foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateAfterStaticPropertyChange' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public static $foo = "bar";
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return A::$foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var int */
|
|
|
|
public static $foo = 5;
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return A::$foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateAfterStaticFlipPropertyChange' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public static $foo = "bar";
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return A::$foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $foo = "bar";
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return A::$foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateAfterConstantChange' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public const FOO = "bar";
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return A::FOO;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public const FOO = 5;
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo() : string {
|
|
|
|
return A::FOO;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
$a = new A();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
2018-09-30 17:33:40 +02:00
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
2018-10-04 00:16:33 +02:00
|
|
|
'dontInvalidateTraitMethods' => [
|
2018-10-03 19:58:32 +02:00
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function fooFoo(): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function noReturnType() {}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function fooFoo(?string $foo = null): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function noReturnType() {}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1,
|
|
|
|
'foo\a::foofoo' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
|
|
|
'foo\b::noreturntype' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
2018-10-03 23:11:08 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
|
|
|
'foo\b::noreturntype' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'MissingReturnType' => \Psalm\Config::REPORT_INFO,
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateTraitMethodsWhenTraitRemoved' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function fooFoo(): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function fooFoo(?string $foo = null): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1,
|
|
|
|
'foo\a::foofoo' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
2018-10-04 00:16:33 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1, // this doesn't exist, so we don't care
|
2018-10-04 00:16:33 +02:00
|
|
|
],
|
2018-10-03 19:58:32 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateTraitMethodsWhenTraitReplaced' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function fooFoo(): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function fooFoo(?string $foo = null): void { }
|
|
|
|
|
|
|
|
public function barBar(): int {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
2018-10-03 23:11:08 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1,
|
|
|
|
'foo\a::foofoo' => 1,
|
2018-10-03 23:11:08 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
2018-10-03 23:11:08 +02:00
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [],
|
|
|
|
]
|
|
|
|
],
|
2018-10-04 00:16:33 +02:00
|
|
|
'invalidateTraitMethodsWhenMethodChanged' => [
|
2018-10-03 23:11:08 +02:00
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function fooFoo(): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bat(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function fooFoo(?string $foo = null): void { }
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function foo(): void {
|
|
|
|
(new A)->fooFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
echo (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): int {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bat(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
2018-10-03 19:58:32 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1,
|
|
|
|
'foo\a::bat&foo\t::bat' => 1,
|
|
|
|
'foo\a::foofoo' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::foo' => 1,
|
|
|
|
'foo\b::bar' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
2018-10-03 23:11:08 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::bat&foo\t::bat' => 1,
|
2018-10-04 00:16:33 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateTraitMethodsWhenMethodSuperimposed' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function bar() : string {
|
|
|
|
return (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
public function barBar(): int {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public function bar() : string {
|
|
|
|
return (new A)->barBar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function barBar(): string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\a::barbar&foo\t::barbar' => 1,
|
2018-10-04 00:16:33 +02:00
|
|
|
],
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [
|
2018-10-07 04:58:21 +02:00
|
|
|
'foo\b::bar' => 1,
|
2018-10-03 19:58:32 +02:00
|
|
|
],
|
2018-10-04 00:16:33 +02:00
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [],
|
2018-10-03 19:58:32 +02:00
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'B.php' => [],
|
|
|
|
]
|
|
|
|
],
|
2018-10-07 04:58:21 +02:00
|
|
|
'dontInvalidateConstructor' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $foo;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->setFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setFoo() : void {
|
|
|
|
$this->reallySetFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function reallySetFoo() : void {
|
|
|
|
$this->foo = "bar";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $foo;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->setFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setFoo() : void {
|
|
|
|
$this->reallySetFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function reallySetFoo() : void {
|
|
|
|
$this->foo = "bar";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 2,
|
|
|
|
'foo\a::setfoo' => 1,
|
|
|
|
'foo\a::reallysetfoo' => 1,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 2,
|
|
|
|
'foo\a::setfoo' => 1,
|
|
|
|
'foo\a::reallysetfoo' => 1,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'invalidateConstructorWhenDependentMethodChanges' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $foo;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->setFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setFoo() : void {
|
|
|
|
$this->reallySetFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function reallySetFoo() : void {
|
|
|
|
$this->foo = "bar";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
public $foo;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->setFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setFoo() : void {
|
|
|
|
$this->reallySetFoo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function reallySetFoo() : void {
|
|
|
|
//$this->foo = "bar";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 2,
|
|
|
|
'foo\a::setfoo' => 1,
|
|
|
|
'foo\a::reallysetfoo' => 1,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::setfoo' => 1,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
2018-10-07 05:38:50 +02:00
|
|
|
'invalidateConstructorWhenDependentTraitMethodChanges' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
public $foo;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->setFoo();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
private function setFoo() : void {
|
|
|
|
$this->foo = "bar";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
public $foo;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->setFoo();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
private function setFoo() : void {
|
|
|
|
//$this->foo = "bar";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::setfoo&foo\t::setfoo' => 1,
|
|
|
|
'foo\a::__construct' => 2,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [],
|
|
|
|
]
|
2018-10-09 19:49:57 +02:00
|
|
|
],
|
|
|
|
'rescanPropertyAssertingMethod' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string */
|
|
|
|
private $foo;
|
|
|
|
|
|
|
|
public function __construct() {}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
if ($this->foo === null) {}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string|null */
|
|
|
|
private $foo;
|
|
|
|
|
|
|
|
public function __construct() {}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
if ($this->foo === null) {}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 2,
|
|
|
|
'foo\a::bar' => 1,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'PropertyNotSetInConstructor' => \Psalm\Config::REPORT_INFO,
|
|
|
|
'DocblockTypeContradiction' => \Psalm\Config::REPORT_INFO,
|
|
|
|
'RedundantConditionGivenDocblockType' => \Psalm\Config::REPORT_INFO,
|
|
|
|
]
|
2018-10-07 05:38:50 +02:00
|
|
|
],
|
2018-10-17 21:52:58 +02:00
|
|
|
'noChangeAfterSyntaxError' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string|null */
|
|
|
|
private $foo;
|
|
|
|
|
|
|
|
public function __construct() {}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
if ($this->foo === null) {}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string|null */
|
|
|
|
private $foo
|
|
|
|
|
|
|
|
public function __construct() {}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
if ($this->foo === null) {}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 1,
|
|
|
|
'foo\a::bar' => 1,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'nothingBeforeSyntaxError' => [
|
|
|
|
'start_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string|null */
|
|
|
|
private $foo
|
|
|
|
|
|
|
|
public function __construct() {}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
if ($this->foo === null) {}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'end_files' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
/** @var string|null */
|
|
|
|
private $foo;
|
|
|
|
|
|
|
|
public function __construct() {}
|
|
|
|
|
|
|
|
public function bar() : void {
|
|
|
|
if ($this->foo === null) {}
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
'initial_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 1,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'unaffected_correct_methods' => [
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'A.php' => [
|
|
|
|
'foo\a::__construct' => 1,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
2018-09-28 22:18:45 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|