mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
MDL-76494 libs: patch Box::Spout for PHP 8.1 - calling basename on null
This commit is contained in:
parent
847f08dcd4
commit
12ac6ce86b
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user