MediaHandler.php: remove bad arg prefixes

This commit is contained in:
Zankaria 2025-03-28 23:30:56 +01:00
parent db3b59e018
commit cd3ddfa2c9

View file

@ -55,13 +55,13 @@ interface MediaHandler {
* Installs the given file.
*
* @param mixed $handle
* @param string $media_preferred_out_file_basepath
* @param string $preferred_out_file_basepath
* @return string Path to installed file.
* @throws MediaException On error.
*/
public function installMedia(
mixed $handle,
string $media_preferred_out_file_basepath
string $preferred_out_file_basepath
): string;
/**