1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 09:19:40 +01:00
psalm/src/Psalm/FileSource.php

31 lines
426 B
PHP
Raw Normal View History

2018-01-21 18:44:46 +01:00
<?php
namespace Psalm;
interface FileSource
{
/**
* @return string
*/
public function getFileName();
/**
* @return string
*/
public function getFilePath();
/**
* @return string
*/
public function getRootFileName();
2018-01-21 18:44:46 +01:00
/**
* @return string
*/
public function getRootFilePath();
/**
* @return Aliases
*/
public function getAliases();
2018-01-21 18:44:46 +01:00
}