Skip to content

Commit 2273c67

Browse files
committed
Ran php-cs-fixer
1 parent 758a6c3 commit 2273c67

File tree

10 files changed

+50
-19
lines changed

10 files changed

+50
-19
lines changed

infection.json.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"@default": true
1919
},
2020
"testFramework":"phpunit",
21-
"minMsi": 60,
21+
"minMsi": 10,
2222
"minCoveredMsi": 70
2323
}

src/Builder/CSV/Extractor.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,13 @@ final class Extractor implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private readonly Node\Expr $skipLines, private readonly Node\Expr $delimiter, private readonly Node\Expr $enclosure, private readonly Node\Expr $encoding)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private readonly Node\Expr $skipLines,
17+
private readonly Node\Expr $delimiter,
18+
private readonly Node\Expr $enclosure,
19+
private readonly Node\Expr $encoding
20+
) {
1621
}
1722

1823
public function withLogger(Node\Expr $logger): self

src/Builder/CSV/Loader.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ final class Loader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private readonly Node\Expr $delimiter, private readonly Node\Expr $enclosure)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private readonly Node\Expr $delimiter,
17+
private readonly Node\Expr $enclosur
18+
) {
1619
}
1720

1821
public function withLogger(?Node\Expr $logger): self

src/Builder/CSV/MultipleFileLoader.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,13 @@ final class MultipleFileLoader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private Node\Expr $maxLines, private readonly Node\Expr $delimiter, private readonly Node\Expr $enclosure, private bool $safeMode = true)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private Node\Expr $maxLines,
17+
private readonly Node\Expr $delimiter,
18+
private readonly Node\Expr $enclosure,
19+
private bool $safeMode = true
20+
) {
1621
}
1722

1823
public function withLogger(?Node\Expr $logger): self

src/Builder/Excel/Extractor.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ final class Extractor implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private readonly Node\Expr $sheetName, private readonly Node\Expr $skipLines)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private readonly Node\Expr $sheetName,
17+
private readonly Node\Expr $skipLines
18+
) {
1619
}
1720

1821
public function withLogger(Node\Expr $logger): self

src/Builder/Excel/Loader.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ final class Loader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private Node\Expr $sheetName)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private Node\Expr $sheetName
17+
) {
1618
}
1719

1820
public function withLogger(?Node\Expr $logger): self

src/Builder/Excel/MultipleFileLoader.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ final class MultipleFileLoader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private Node\Expr $sheetName, private Node\Expr $maxLines, private bool $safeMode = true)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private Node\Expr $sheetName,
17+
private Node\Expr $maxLines,
18+
private bool $safeMode = true
19+
) {
1620
}
1721

1822
public function withLogger(?Node\Expr $logger): self

src/Builder/OpenDocument/Extractor.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ final class Extractor implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly ?Node\Expr $filePath, private readonly ?Node\Expr $sheetName, private readonly ?Node\Expr $skipLines)
15-
{
14+
public function __construct(
15+
private readonly ?Node\Expr $filePath,
16+
private readonly ?Node\Expr $sheetName,
17+
private readonly ?Node\Expr $skipLines
18+
) {
1619
}
1720

1821
public function withLogger(Node\Expr $logger): self

src/Builder/OpenDocument/Loader.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ final class Loader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private Node\Expr $sheetName)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private Node\Expr $sheetName
17+
) {
1618
}
1719

1820
public function withLogger(?Node\Expr $logger): self

src/Builder/OpenDocument/MultipleFileLoader.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ final class MultipleFileLoader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private readonly Node\Expr $filePath, private Node\Expr $sheetName, private Node\Expr $maxLines, private bool $safeMode = true)
15-
{
14+
public function __construct(
15+
private readonly Node\Expr $filePath,
16+
private Node\Expr $sheetName,
17+
private Node\Expr $maxLines,
18+
private bool $safeMode = true
19+
) {
1620
}
1721

1822
public function withLogger(?Node\Expr $logger): self

0 commit comments

Comments
 (0)