Skip to content

Commit

Permalink
fix: error with tracking code
Browse files Browse the repository at this point in the history
  • Loading branch information
contardi committed Apr 24, 2024
1 parent 24d21c8 commit affd42e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Model/Carrier/Intelipost.php
Original file line number Diff line number Diff line change
Expand Up @@ -464,9 +464,8 @@ public function isTrackingAvailable()
return true;
}

public function getTrackingInfo(string $trackingNumber): TrackingResult
public function getTrackingInfo(string $trackingNumber): array
{
$result = $this->trackResultFactory->create();
return $result;
return ['number' => $trackingNumber];
}
}

0 comments on commit affd42e

Please sign in to comment.