JamesMoss\Flywheel\NestedRepository::getAllFiles PHP Method

getAllFiles() public method

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