Skip to content

Commit 92b8c8f

Browse files
authored
Merge pull request #13 from codebar-ag/feature-l11
Bump Deps
2 parents df8b2f9 + 89bdcac commit 92b8c8f

File tree

169 files changed

+169
-314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+169
-314
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: vendor/bin/pest
4949

5050
- name: Store test reports
51-
uses: actions/upload-artifact@v2
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: Store report
5454
retention-days: 1

.phpunit.cache/test-results

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 0 deletions

src/BexioConnector.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class BexioConnector extends Connector
1010
{
1111
public function __construct(
1212
protected readonly ?string $token = null,
13-
) {
14-
}
13+
) {}
1514

1615
public function resolveBaseUrl(): string
1716
{

src/Dto/AccountGroups/AccountGroupDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ public function __construct(
1616
public bool $is_active,
1717
public bool $is_locked,
1818
public ?int $parent_fibu_account_group_id = null,
19-
) {
20-
}
19+
) {}
2120

2221
public static function fromResponse(Response $response): self
2322
{

src/Dto/Accounts/AccountDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public bool $is_locked,
1919
public ?int $tax_id = null,
2020
public ?int $fibu_account_group_id = null,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/AdditionalAddresses/AdditionalAddressDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public ?int $postcode = null,
1919
public ?string $city = null,
2020
public ?string $country_id = null,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/AdditionalAddresses/CreateEditAdditionalAddressDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ public function __construct(
1717
public ?int $postcode = null,
1818
public ?string $city = null,
1919
public ?string $country_id = null,
20-
) {
21-
}
20+
) {}
2221

2322
public static function fromResponse(Response $response): self
2423
{

src/Dto/BankAccounts/BankAccountDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ public function __construct(
3434
public ?string $esr_bottom_line_include_amount = null,
3535
public ?string $remarks = null,
3636
public ?string $qr_invoice_iban = null,
37-
) {
38-
}
37+
) {}
3938

4039
public static function fromResponse(Response $response): self
4140
{

src/Dto/BusinessYears/BusinessYearDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ public function __construct(
1515
public string $end,
1616
public string $status,
1717
public ?string $closed_at = null,
18-
) {
19-
}
18+
) {}
2019

2120
public static function fromResponse(Response $response): self
2221
{

src/Dto/CalendarYears/CalendarYearDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public string $updated_at,
1919
public ?string $vat_accounting_method = null,
2020
public ?string $vat_accounting_type = null,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/CalendarYears/CreateCalendarYearDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ public function __construct(
1616
public string $vat_accounting_type,
1717
public int $default_tax_income_id,
1818
public int $default_tax_expense_id,
19-
) {
20-
}
19+
) {}
2120

2221
public static function fromResponse(Response $response): self
2322
{

src/Dto/CompanyProfiles/CompanyProfileDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ public function __construct(
4242
public ?string $ust_id_nr = null,
4343
public ?string $mwst_nr = null,
4444
public ?string $trade_register_nr = null,
45-
) {
46-
}
45+
) {}
4746

4847
public static function fromResponse(Response $response): self
4948
{

src/Dto/ContactAdditionalAddresses/ContactAdditionalAddressDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public string $postcode,
1919
public string $city,
2020
public ?int $country_id = null,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/ContactAdditionalAddresses/CreateEditContactAdditionalAddressDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ public function __construct(
1717
public string $postcode,
1818
public string $city,
1919
public ?int $country_id = null,
20-
) {
21-
}
20+
) {}
2221

2322
public static function fromResponse(Response $response): self
2423
{

src/Dto/ContactGroups/ContactGroupDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ class ContactGroupDTO extends Data
1212
public function __construct(
1313
public int $id,
1414
public string $name,
15-
) {
16-
}
15+
) {}
1716

1817
public static function fromResponse(Response $response): self
1918
{

src/Dto/ContactGroups/CreateEditContactGroupDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ class CreateEditContactGroupDTO extends Data
1111
{
1212
public function __construct(
1313
public string $name,
14-
) {
15-
}
14+
) {}
1615

1716
public static function fromResponse(Response $response): self
1817
{

src/Dto/ContactRelations/ContactRelationDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ public function __construct(
1515
public int $contact_sub_id,
1616
public ?string $description,
1717
public ?string $updated_at,
18-
) {
19-
}
18+
) {}
2019

2120
public static function fromResponse(Response $response): self
2221
{

src/Dto/ContactRelations/CreateEditContactRelationDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ public function __construct(
1313
public int $contact_id,
1414
public int $contact_sub_id,
1515
public ?string $description,
16-
) {
17-
}
16+
) {}
1817

1918
public static function fromResponse(Response $response): self
2019
{

src/Dto/ContactSectors/ContactSectorDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ class ContactSectorDTO extends Data
1212
public function __construct(
1313
public int $id,
1414
public string $name,
15-
) {
16-
}
15+
) {}
1716

1817
public static function fromResponse(Response $response): self
1918
{

src/Dto/Contacts/ContactDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ public function __construct(
3939
public ?string $contact_group_ids,
4040
public ?string $contact_branch_ids,
4141
public ?string $updated_at,
42-
) {
43-
}
42+
) {}
4443

4544
public static function fromResponse(Response $response): self
4645
{

src/Dto/Contacts/CreateEditContactDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ public function __construct(
3636
public ?int $language_id = null, //ref to language
3737
public ?string $contact_group_ids = null,
3838
public ?string $contact_branch_ids = null,
39-
) {
40-
}
39+
) {}
4140

4241
public static function fromResponse(Response $response): self
4342
{

src/Dto/Currencies/CreateCurrencyDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ class CreateCurrencyDTO extends Data
1212
public function __construct(
1313
public string $name,
1414
public float $round_factor,
15-
) {
16-
}
15+
) {}
1716

1817
public static function fromResponse(Response $response): self
1918
{

src/Dto/Currencies/CurrencyDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ public function __construct(
1313
public int $id,
1414
public string $name,
1515
public float $round_factor,
16-
) {
17-
}
16+
) {}
1817

1918
public static function fromResponse(Response $response): self
2019
{

src/Dto/Currencies/EditCurrencyDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ class EditCurrencyDTO extends Data
1111
{
1212
public function __construct(
1313
public float $round_factor,
14-
) {
15-
}
14+
) {}
1615

1716
public static function fromResponse(Response $response): self
1817
{

src/Dto/Currencies/ExchangeCurrencyDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ class ExchangeCurrencyDTO extends Data
1212
public function __construct(
1313
public float $factor_nr,
1414
public CurrencyDTO $exchange_currency,
15-
) {
16-
}
15+
) {}
1716

1817
public static function fromResponse(Response $response): self
1918
{

src/Dto/Files/EditFileDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ public function __construct(
1313
public string $name,
1414
public bool $is_archived,
1515
public string $source_type,
16-
) {
17-
}
16+
) {}
1817

1918
public static function fromResponse(Response $response): self
2019
{

src/Dto/Files/FileDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public function __construct(
2525
public ?string $uploader_email = null,
2626
public ?string $processing_source = null,
2727
public ?string $processing_status = null,
28-
) {
29-
}
28+
) {}
3029

3130
public static function fromResponse(Response $response): self
3231
{

src/Dto/Files/FileUsageDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ public function __construct(
1414
public string $ref_class,
1515
public string $title,
1616
public string $document_nr,
17-
) {
18-
}
17+
) {}
1918

2019
public static function fromResponse(Response $response): self
2120
{

src/Dto/IbanPayments/CreateEditIbanPaymentDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public bool $is_editing_restricted,
1919
public string $message,
2020
public string $allowance_type,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/ManualEntries/AddFileDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public function __construct(
1212
public string $name,
1313
public mixed $absolute_file_path_or_stream,
1414
public string $filename,
15-
) {
16-
}
15+
) {}
1716

1817
public static function fromArray(array $data): self
1918
{

src/Dto/ManualEntries/CreateEntryDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ public function __construct(
1717
public ?int $currency_factor = null,
1818
public ?int $debit_account_id = null,
1919
public ?int $credit_account_id = null,
20-
) {
21-
}
20+
) {}
2221

2322
public static function fromArray(array $data): self
2423
{

src/Dto/ManualEntries/CreateManualEntryDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ public function __construct(
1616
public string $date,
1717
public Collection $entries,
1818
public ?string $reference_nr = null,
19-
) {
20-
}
19+
) {}
2120

2221
public static function fromResponse(Response $response): self
2322
{

src/Dto/ManualEntries/EntryDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ public function __construct(
2424
public ?int $tax_account_id = null,
2525
public ?int $created_by_user_id = null,
2626
public ?int $edited_by_user_id = null,
27-
) {
28-
}
27+
) {}
2928

3029
public static function fromResponse(Response $response): self
3130
{

src/Dto/ManualEntries/FileDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public function __construct(
2525
public ?string $uploader_email = null,
2626
public ?string $processing_source = null,
2727
public ?string $processing_status = null
28-
) {
29-
}
28+
) {}
3029

3130
public static function fromResponse(Response $response): self
3231
{

src/Dto/ManualEntries/ManualEntryDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ public function __construct(
2121
public bool $is_locked,
2222
public ?string $reference_nr = null,
2323
public ?string $locked_info = null,
24-
) {
25-
}
24+
) {}
2625

2726
public static function fromResponse(Response $response): self
2827
{

src/Dto/Notes/CreateEditNoteDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public ?int $pr_project_id = null,
1919
public ?int $entry_id = null,
2020
public ?int $module_id = null,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/Notes/NoteDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ public function __construct(
1919
public ?int $project_id = null,
2020
public ?int $entry_id = null,
2121
public ?int $module_id = null,
22-
) {
23-
}
22+
) {}
2423

2524
public static function fromResponse(Response $response): self
2625
{

src/Dto/Payments/PaymentDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ public function __construct(
1818
public string $instruction_id,
1919
public string $status,
2020
public string $created_at,
21-
) {
22-
}
21+
) {}
2322

2423
public static function fromResponse(Response $response): self
2524
{

src/Dto/QrPayments/CreateEditQrPaymentDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ public function __construct(
1717
public ?string $qr_reference_nr = null,
1818
public ?string $additional_information = null,
1919
public ?bool $is_editing_restricted = null,
20-
) {
21-
}
20+
) {}
2221

2322
public static function fromResponse(Response $response): self
2423
{

src/Dto/Reports/JournalDTO.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ public function __construct(
2020
public ?int $ref_id = null,
2121
public ?string $ref_uuid = null,
2222
public ?string $ref_class = null,
23-
) {
24-
}
23+
) {}
2524

2625
public static function fromResponse(Response $response): self
2726
{

0 commit comments

Comments
 (0)