Skip to content

Commit b0ca2a1

Browse files
committed
fix from cs fixer
1 parent 9748ff3 commit b0ca2a1

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

src/CategoryLookup.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public function __construct(
2020
private string $cacheKey,
2121
private CompiledMapperInterface $mapper,
2222
private string $mappingField,
23-
) {}
23+
) {
24+
}
2425

2526
public function transform(): \Generator
2627
{

src/CustomerExtractor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function __construct(
2323
private readonly int $pageSize = 100,
2424
/** @var FilterGroup[] $filters */
2525
private readonly array $filters = [],
26-
) {}
26+
) {
27+
}
2728

2829
private function compileQueryParameters(int $currentPage = 1): array
2930
{

src/Filter.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ public function __construct(
1010
public string $field,
1111
public string $conditionType,
1212
public mixed $value,
13-
) {}
13+
) {
14+
}
1415
}

src/InvoiceExtractor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function __construct(
2323
private readonly int $pageSize = 100,
2424
/** @var FilterGroup[] $filters */
2525
private readonly array $filters = [],
26-
) {}
26+
) {
27+
}
2728

2829
private function compileQueryParameters(int $currentPage = 1): array
2930
{

src/Lookup.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ public function __construct(
2121
private CompiledMapperInterface $mapper,
2222
private string $mappingField,
2323
private string $attributeCode,
24-
) {}
24+
) {
25+
}
2526

2627
public function transform(): \Generator
2728
{

src/ProductExtractor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function __construct(
2323
private readonly int $pageSize = 100,
2424
/** @var FilterGroup[] $filters */
2525
private readonly array $filters = [],
26-
) {}
26+
) {
27+
}
2728

2829
private function compileQueryParameters(int $currentPage = 1): array
2930
{

0 commit comments

Comments
 (0)