Skip to content

Commit 0e5f2b3

Browse files
committed
Cleanup
1 parent 4fd97d3 commit 0e5f2b3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/services/LineItems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public function saveLineItem(LineItem $lineItem, bool $runValidation = true): bo
212212
$lineItemRecord = LineItemRecord::findOne($lineItem->id);
213213

214214
if (!$lineItemRecord) {
215-
Craft::info('Line Item ID:'.$lineItem->id.' does not exist and can not be saved.', __METHOD__);
215+
Craft::info('Line Item ID:' . $lineItem->id . ' does not exist and can not be saved.', __METHOD__);
216216
return false;
217217

218218
}

src/services/OrderAdjustments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public function saveOrderAdjustment(OrderAdjustment $orderAdjustment, bool $runV
157157
$record = OrderAdjustmentRecord::findOne($orderAdjustment->id);
158158

159159
if (!$record) {
160-
Craft::info('Order Adjustment ID:'.$orderAdjustment->id.' does not exist and can not be saved.', __METHOD__);
160+
Craft::info('Order Adjustment ID:' . $orderAdjustment->id . ' does not exist and can not be saved.', __METHOD__);
161161
return false;
162162
}
163163
}

0 commit comments

Comments
 (0)