mirror of
https://github.com/danog/psalm.git
synced 2024-12-11 16:59:45 +01:00
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();
|
||
|
}
|