Skip to content

Commit

Permalink
Ran php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
sebprt committed Sep 14, 2023
1 parent 402ae01 commit 2a0de88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/Builder/Extractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ final class Extractor implements StepBuilderInterface
{
private ?Node\Expr $logger = null;

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)
{
}
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) {}

public function withFilePath(Node\Expr $filePath): self
{
Expand Down
4 changes: 1 addition & 3 deletions src/Builder/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ final class Loader implements StepBuilderInterface
{
private ?Node\Expr $logger = null;

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)
{
}
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) {}

public function withFilePath(Node\Expr $filePath): self
{
Expand Down
4 changes: 1 addition & 3 deletions src/Builder/MultipleFilesLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ final class MultipleFilesLoader implements StepBuilderInterface
{
private ?Node\Expr $logger = null;

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)
{
}
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) {}

public function withFilePath(Node\Expr $filePath): self
{
Expand Down

0 comments on commit 2a0de88

Please sign in to comment.