mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 01:37:23 +01:00
31 lines
432 B
PHP
31 lines
432 B
PHP
<?php
|
|
namespace Psalm;
|
|
|
|
interface FileSource
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFileName();
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFilePath();
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCheckedFileName();
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCheckedFilePath();
|
|
|
|
/**
|
|
* @return Aliases
|
|
*/
|
|
public function getAliases();
|
|
}
|