change freight orders to freight order ids
This commit is contained in:
parent
b58d23f084
commit
dbed2a9acc
3 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue