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
{

0 commit comments

Comments
 (0)