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

getAllFiles() 공개 메소드

Get an array containing the path of all files in this repository
public getAllFiles ( ) : array
리턴 array An array, item is a file
    public function getAllFiles()
    {
        $ext = $this->formatter->getFileExtension();
        $files = glob($this->path . DIRECTORY_SEPARATOR . '*.' . $ext);
        return $files;
    }