Problem description
- Library version or last commit you have
- PHP version you use
- Detailed problem description
If you think that problem is connected with your file content, please attach it to the issue.
Code snippet you use
class phpGPX
$gpx->version = isset($xml['version']) ? (string)$xml['version'] : null;
class GpxFile
/**
* Version about the file.
* The original GPX 1.1 attribute.
* @var Version|null
*/
public $version;
$this->version = null;
'version' => SerializationHelper::stringOrNull($this->version),
Problem description
If you think that problem is connected with your file content, please attach it to the issue.
Code snippet you use