mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-12 17:25:45 +00:00
29 lines
652 B
PHP
29 lines
652 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Media\FileManagers;
|
|
|
|
use CodeIgniter\Files\File;
|
|
|
|
interface FileManagerInterface
|
|
{
|
|
public function save(File $file, string $key): string | false;
|
|
|
|
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;
|
|
|
|
public function getFileInput(string $key): string;
|
|
|
|
public function deletePodcastImageSizes(string $podcastHandle): bool;
|
|
|
|
public function deletePersonImagesSizes(): bool;
|
|
|
|
public function isHealthy(): bool;
|
|
}
|