(string $folderSan, string $relativeSubDir, string $fileName)
| 530 | } |
| 531 | |
| 532 | private static function buildStoragePath(string $folderSan, string $relativeSubDir, string $fileName): string |
| 533 | { |
| 534 | $path = self::buildStorageDir($folderSan, $relativeSubDir); |
| 535 | return $path . DIRECTORY_SEPARATOR . $fileName; |
| 536 | } |
| 537 | |
| 538 | private static function ensureRemoteUploadDir(StorageAdapterInterface $storage, string $folderSan, string $relativeSubDir): void |
| 539 | { |
no test coverage detected