mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 10:38:49 +01:00
65 lines
1.9 KiB
PHP
65 lines
1.9 KiB
PHP
<?php
|
|
namespace Psalm\Internal\Analyzer;
|
|
|
|
use PhpParser;
|
|
use Psalm\CodeLocation;
|
|
use Psalm\StatementsSource;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class InterfaceAnalyzer extends ClassLikeAnalyzer
|
|
{
|
|
/**
|
|
* @param PhpParser\Node\Stmt\Interface_ $interface
|
|
* @param string $fq_interface_name
|
|
*/
|
|
public function __construct(PhpParser\Node\Stmt\Interface_ $interface, SourceAnalyzer $source, $fq_interface_name)
|
|
{
|
|
parent::__construct($interface, $source, $fq_interface_name);
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function analyze()
|
|
{
|
|
if (!$this->class instanceof PhpParser\Node\Stmt\Interface_) {
|
|
throw new \LogicException('Something went badly wrong');
|
|
}
|
|
|
|
if ($this->class->extends) {
|
|
$project_analyzer = $this->file_analyzer->project_analyzer;
|
|
$codebase = $project_analyzer->getCodebase();
|
|
|
|
foreach ($this->class->extends as $extended_interface) {
|
|
$extended_interface_name = self::getFQCLNFromNameObject(
|
|
$extended_interface,
|
|
$this->getAliases()
|
|
);
|
|
|
|
$parent_reference_location = new CodeLocation($this, $extended_interface);
|
|
|
|
if (!$codebase->classOrInterfaceExists(
|
|
$extended_interface_name,
|
|
$parent_reference_location
|
|
)) {
|
|
// we should not normally get here
|
|
return;
|
|
}
|
|
|
|
if ($codebase->server_mode && $extended_interface_name) {
|
|
$bounds = $parent_reference_location->getSelectionBounds();
|
|
|
|
$codebase->analyzer->addOffsetReference(
|
|
$this->getFilePath(),
|
|
$bounds[0],
|
|
$bounds[1],
|
|
$extended_interface_name
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|