1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-11 16:59:45 +01:00
psalm/lib/StatementsSource.php

24 lines
381 B
PHP
Raw Normal View History

<?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();
}