Bolt\Stack::persistableList PHP Method

persistableList() private method

Returns the list of files as full paths.
private persistableList ( ) : string[]
return string[]
    private function persistableList()
    {
        return array_map(function (FileInterface $file) {
            return $file->getFullPath();
        }, $this->files);
    }