Open
Description
public function isRelativePath()
{
$path = $this->getPath();
return empty($path) || $path{0}
!== '/';
}
need to fix and replace with
public function isRelativePath()
{
$path = $this->getPath();
return empty($path) || $path[0]
!== '/';
}
$path[0] but not $path{0} as library does not work on php >=7.3
Metadata
Metadata
Assignees
Labels
No labels