Skip to content

Commit

Permalink
fix: comment out default weight in BpostConsignment model (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
GravendeelJochem authored Oct 1, 2024
1 parent 1a41143 commit 1e01ce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/Consignment/BpostConsignment.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class BpostConsignment extends AbstractConsignment
/** @deprecated use $this->getCarrierName() */
public const CARRIER_NAME = 'bpost';

public const DEFAULT_WEIGHT = 50;
// public const DEFAULT_WEIGHT = 50;

/**
* @var int
Expand All @@ -32,7 +32,7 @@ class BpostConsignment extends AbstractConsignment
* @internal
* @var int
*/
public $physical_properties = ['weight' => self::DEFAULT_WEIGHT];
// public $physical_properties = ['weight' => self::DEFAULT_WEIGHT];

/**
* @var string
Expand Down

0 comments on commit 1e01ce2

Please sign in to comment.