Skip to content

Commit

Permalink
fix style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Paul authored and Joshua Paul committed Jul 18, 2023
1 parent 37d5de3 commit 4df5e1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"laravel/pint": "^1.0",
"laravel/pint": "^1.10",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
Expand Down
4 changes: 2 additions & 2 deletions src/Traits/ShipmentApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function cancelShipment(string $shipmentId): array
$endpoint = sprintf('%s/cancel', TerminalAfricaConstant::SHIPMENT_ENDPOINT);

$formParams = [
'shipment_id' => $shipmentId
'shipment_id' => $shipmentId,
];

return $this->makeRequest(
Expand All @@ -114,7 +114,7 @@ public function deleteShipment(string $shipmentId): array
$endpoint = sprintf('%s', TerminalAfricaConstant::SHIPMENT_ENDPOINT);

$formParams = [
'shipment_id' => $shipmentId
'shipment_id' => $shipmentId,
];

return $this->makeRequest(
Expand Down

1 comment on commit 4df5e1c

@vercel
Copy link

@vercel vercel bot commented on 4df5e1c Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.