mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
class Php40Test extends TestCase
|
|
{
|
|
use ValidCodeAnalysisTestTrait;
|
|
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'extendOldStyleConstructor' => [
|
|
'code' => '<?php
|
|
class A {
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function A() {
|
|
return "hello";
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
}',
|
|
],
|
|
'sameNameMethodWithNewStyleConstructor' => [
|
|
'code' => '<?php
|
|
class A {
|
|
public function __construct(string $s) { }
|
|
/** @return void */
|
|
public function a(int $i) { }
|
|
}
|
|
new A("hello");',
|
|
],
|
|
];
|
|
}
|
|
}
|