Merge branch 'width_fix' of github.com:xwiz/spout into width_fix

This commit is contained in:
Xwiz 2022-02-12 17:04:25 +01:00
commit ea22cac7e4

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);
}