MDL-76494 libs: patch Box::Spout for PHP 8.1 - calling basename on null

This commit is contained in:
Marina Glancy 2022-11-30 10:30:34 +01:00
parent 847f08dcd4
commit 12ac6ce86b

View File

@ -243,10 +243,10 @@ class GlobalFunctionsHelper
* @see basename()
*
* @param string $path
* @param string|null $suffix
* @param string $suffix
* @return string
*/
public function basename($path, $suffix = null)
public function basename($path, $suffix = '')
{
return \basename($path, $suffix);
}