Skip to content

Commit 5424edc

Browse files
QuentinGabgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 603e958 commit 5424edc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Feature/PdfInvoiceTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66

77
it('computes the right subTotalAmount, totalTaxAmount and totalAmount', function () {
88
$pdfInvoice = new PdfInvoice(
9-
name: "Invoice",
10-
serial_number: "FAKE-INVOICE-01",
11-
state: "paid",
9+
name: 'Invoice',
10+
serial_number: 'FAKE-INVOICE-01',
11+
state: 'paid',
1212
due_at: now(),
1313
created_at: now(),
1414
buyer: config('invoices.default_seller')
1515
);
1616

1717
$pdfInvoice->items = [
1818
new PdfInvoiceItem(
19-
label: "Item 1",
19+
label: 'Item 1',
2020
unit_price: Money::of(110, 'USD'),
2121
unit_tax: Money::of(10, 'USD')
2222
),
2323
new PdfInvoiceItem(
24-
label: "Item 1",
24+
label: 'Item 1',
2525
unit_price: Money::of(234, 'USD'),
2626
unit_tax: Money::of(12, 'USD')
2727
),

0 commit comments

Comments
 (0)