mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 01:37:23 +01:00
ead107fa9e
* add native return types * redundant phpdoc
16 lines
276 B
PHP
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;
|
|
}
|