1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 01:37:23 +01:00
psalm/src/Psalm/FileSource.php
orklah ead107fa9e
More return types (#4173)
* add native return types

* redundant phpdoc
2020-09-12 11:24:05 -04:00

16 lines
276 B
PHP

<?php
namespace Psalm;
interface FileSource
{
public function getFileName(): string;
public function getFilePath(): string;
public function getRootFileName(): string;
public function getRootFilePath(): string;
public function getAliases(): Aliases;
}