mirror of
https://github.com/danog/psalm.git
synced 2025-01-21 21:31:13 +01:00
26 lines
358 B
PHP
26 lines
358 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();
|
||
|
}
|