fix: delete files using file_manager when deleting episode and podcast

- add deleteAll method to file manager
- refactor deletePodcastImageSizes and
deletePersonImagesSizes implementations
This commit is contained in:
Yassine Doghri 2023-03-30 13:23:10 +00:00
commit 41d8efe6e7
6 changed files with 1768 additions and 1721 deletions

View file

@ -24,5 +24,7 @@ interface FileManagerInterface
public function deletePersonImagesSizes(): bool;
public function deleteAll(string $prefix, string $pattern = '*'): bool;
public function isHealthy(): bool;
}