1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\File;
4:
5: /** @api */
6: interface RelativePathHelper
7: {
8:
9: public function getRelativePath(string $filename): string;
10:
11: }
12: