JamesMoss\Flywheel\Repository::getFilename PHP 메소드

getFilename() 공개 메소드

Gets just the filename for a document based on it's ID.
public getFilename ( string $id ) : string
$id string The ID of the document.
리턴 string The filename of the document, including extension.
    public function getFilename($id)
    {
        return $id . '.' . $this->formatter->getFileExtension();
    }