1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/Psalm/FileSource.php

22 lines
336 B
PHP
Raw Normal View History

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