Skip to content

Commit 2a0de88

Browse files
committed
Ran php-cs-fixer
1 parent 402ae01 commit 2a0de88

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

src/Builder/Extractor.php

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

14-
public function __construct(private Node\Expr $filePath, private ?Node\Expr $delimiter = null, private ?Node\Expr $enclosure = null, private ?Node\Expr $escape = null, private ?Node\Expr $columns = null, private bool $safeMode = true)
15-
{
16-
}
14+
public function __construct(private Node\Expr $filePath, private ?Node\Expr $delimiter = null, private ?Node\Expr $enclosure = null, private ?Node\Expr $escape = null, private ?Node\Expr $columns = null, private bool $safeMode = true) {}
1715

1816
public function withFilePath(Node\Expr $filePath): self
1917
{

src/Builder/Loader.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ final class Loader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private Node\Expr $filePath, private ?Node\Expr $delimiter = null, private ?Node\Expr $enclosure = null, private ?Node\Expr $escape = null, private ?Node\Expr $columns = null, private bool $safeMode = true, private bool $withNonStandard = false)
15-
{
16-
}
14+
public function __construct(private Node\Expr $filePath, private ?Node\Expr $delimiter = null, private ?Node\Expr $enclosure = null, private ?Node\Expr $escape = null, private ?Node\Expr $columns = null, private bool $safeMode = true, private bool $withNonStandard = false) {}
1715

1816
public function withFilePath(Node\Expr $filePath): self
1917
{

src/Builder/MultipleFilesLoader.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ final class MultipleFilesLoader implements StepBuilderInterface
1111
{
1212
private ?Node\Expr $logger = null;
1313

14-
public function __construct(private Node\Expr $filePath, private Node\Expr $maxLines, private ?Node\Expr $delimiter = null, private ?Node\Expr $enclosure = null, private ?Node\Expr $escape = null, private ?Node\Expr $columns = null, private bool $safeMode = true, private bool $withNonStandard = false)
15-
{
16-
}
14+
public function __construct(private Node\Expr $filePath, private Node\Expr $maxLines, private ?Node\Expr $delimiter = null, private ?Node\Expr $enclosure = null, private ?Node\Expr $escape = null, private ?Node\Expr $columns = null, private bool $safeMode = true, private bool $withNonStandard = false) {}
1715

1816
public function withFilePath(Node\Expr $filePath): self
1917
{

0 commit comments

Comments
 (0)