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

32 lines
497 B
PHP
Raw Normal View History

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