mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 15:09:04 +01:00
17 lines
277 B
PHP
17 lines
277 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;
|
|
}
|