1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00
psalm/src/Psalm/FileSource.php

26 lines
358 B
PHP
Raw Normal View History

2018-01-21 12:44:46 -05:00
<?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();
}