<?php declare(strict_types=1); namespace Modules\Media\FileManagers; use CodeIgniter\Files\File; interface FileManagerInterface { public function save(File $file, string $key): string; public function delete(string $key): bool; public function getUrl(string $key): string; public function rename(string $oldKey, string $newKey): bool; public function getFileContents(string $key): string|false; public function getFileInput(string $key): string; public function deletePodcastImageSizes(string $podcastHandle): bool; public function deletePersonImagesSizes(): bool; public function deleteAll(string $prefix, string $pattern = '*'): bool; public function isHealthy(): bool; }