Skip to content

Commit 31c54db

Browse files
author
Vítězslav Dvořák
committed
ExtID Relation parsing fix
1 parent c3add19 commit 31c54db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AbraFlexi/Relation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static function fromExtId(string $extIdRaw, string $column): self
110110
{
111111
[,$ext,$extId] = explode(':', $extIdRaw);
112112

113-
return new self($extId, $ext, $extId, trim($column.' '.$ext).':'.$extId);
113+
return new self($extIdRaw, $ext, $extId, trim($column.' '.$ext).':'.$extId);
114114
}
115115

116116
public static function fromTypDokl(array $typDokl): self

0 commit comments

Comments
 (0)