change freight orders to freight order ids

This commit is contained in:
Yisroel Baum 2025-11-13 20:44:29 +02:00
parent b58d23f084
commit dbed2a9acc
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ class Carrier
private string $notes,
private string $loadProfile,
private array $countriesServing,
private array $freightOrders,
private array $freightOrderIds,
) {}
public function getId(): ?int
@ -61,8 +61,8 @@ class Carrier
return $this->countriesServing;
}
public function getFreightOrders(): array
public function getFreightOrderIds(): array
{
return $this->freightOrders;
return $this->freightOrderIds;
}
}