Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added reproducer for stub property not set in constructor #7075

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions tests/StubTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1301,4 +1301,60 @@ function em(EntityManager $em) : void {

$this->analyzeFile($file_path, new Context());
}

public function testOverriddenStubProperty(): void
{
$this->project_analyzer = $this->getProjectAnalyzerWithConfig(
TestConfig::loadFromXML(
dirname(__DIR__),
'<?xml version="1.0"?>
<psalm>
<projectFiles>
<directory name="src" />
</projectFiles>
<stubs>
<file name="tests/fixtures/stubs/SymfonyKernel.phpstub" />
</stubs>
</psalm>'
)
);

$vendor_file_path = getcwd() . '/vendor/Kernel.php';

$this->addFile(
$vendor_file_path,
'<?php
namespace Symfony\Component\HttpKernel;
class Kernel {
protected $environment;
public function __construct(string $environment)
{
if (!$this->environment = $environment) {
throw new InvalidArgumentException;
}
}
}'
);

$file_path = getcwd() . '/src/somefile.php';
$this->addFile(
$file_path,
'<?php
namespace Sonata\DoctrineORMAdminBundle\Tests\App;
use Symfony\Component\HttpKernel\Kernel;
final class AppKernel extends Kernel
{
public function __construct()
{
parent::__construct("test");
}
}
'
);

$this->analyzeFile($file_path, new Context(), false);
}
}
11 changes: 11 additions & 0 deletions tests/fixtures/stubs/SymfonyKernel.phpstub
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Symfony\Component\HttpKernel;

class Kernel
{
/**
* @var string
*/
protected $environment;
}