phplrt/phplrt

View on GitHub
libs/contracts/source/src/FileInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phplrt\Contracts\Source;

interface FileInterface extends ReadableInterface
{
    /**
     * Returns the physical path to the source file.
     *
     * @return non-empty-string
     */
    public function getPathname(): string;
}