Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Razorsheep authored and github-actions[bot] committed Aug 2, 2023
1 parent 57f584d commit 380be07
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/REST/Actions/ManagesFulfillments.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,11 @@ public function rescheduleFulfillmentOrder($fulfillmentOrderId, $data): ApiResou

public function setFulfillmentOrdersDeadline(array $fulfillmentOrderIds, $fulfillmentDeadline): bool
{
$response = $this->post("fulfillment_orders/set_fulfillment_orders_deadline.json", [
$response = $this->post('fulfillment_orders/set_fulfillment_orders_deadline.json', [
'fulfillment_order_ids' => $fulfillmentOrderIds,
'fulfillment_deadline' => $fulfillmentDeadline,
]);

return true;
}

}

0 comments on commit 380be07

Please sign in to comment.