mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
0b95ab4be6
No longer are we limited to checking PSR-4-compliant files.
24 lines
381 B
PHP
24 lines
381 B
PHP
<?php
|
|
|
|
namespace CodeInspector;
|
|
|
|
interface StatementsSource
|
|
{
|
|
public function getNamespace();
|
|
|
|
public function getAliasedClasses();
|
|
|
|
public function getAbsoluteClass();
|
|
|
|
public function getClassName();
|
|
|
|
/**
|
|
* @return \PhpParser\Node\Name
|
|
*/
|
|
public function getClassExtends();
|
|
|
|
public function getFileName();
|
|
|
|
public function isStatic();
|
|
}
|