(string $folderSan)
| 113 | } |
| 114 | |
| 115 | private static function resumableFolderKey(string $folderSan): string |
| 116 | { |
| 117 | $folderSan = trim(str_replace('\\', '/', $folderSan), '/'); |
| 118 | if ($folderSan === '' || $folderSan === 'root') { |
| 119 | return 'root'; |
| 120 | } |
| 121 | return $folderSan; |
| 122 | } |
| 123 | |
| 124 | private static function normalizeResumableIdentifier($identifier): ?string |
| 125 | { |
no outgoing calls
no test coverage detected