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 Nov 20, 2023
1 parent cd8c588 commit 12691a4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 13 deletions.
3 changes: 1 addition & 2 deletions src/Constraint/Pipeline/PipelineWritesFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ public function __construct(
private readonly iterable $source,
private readonly string $expected,
private readonly PipelineRunnerInterface $runner,
) {
}
) {}

/**
* @param list<Type> $iterable
Expand Down
3 changes: 1 addition & 2 deletions src/Mock/FileSystemBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
{
public function __construct(
private string $mockedFilesystem,
) {
}
) {}

public function getNode(): Node\Expr
{
Expand Down
3 changes: 1 addition & 2 deletions src/Mock/HttpClientBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ final class HttpClientBuilder implements Builder

public function __construct(
private readonly Mock\ResponseFactoryBuilder $responseFactory
) {
}
) {}

public function expectResponse(
Mock\RequestMatcher\RequestMatcherBuilderInterface $requestMatcher,
Expand Down
3 changes: 1 addition & 2 deletions src/Mock/RequestMatcher/RequestMatcherBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ public function __construct(
private readonly ?string $host = null,
private $methods = [],
private $schemes = []
) {
}
) {}

public function getNode(): Node
{
Expand Down
4 changes: 1 addition & 3 deletions src/Mock/RequestMatcher/RequestMatcherBuilderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@

use PhpParser\Builder;

interface RequestMatcherBuilderInterface extends Builder
{
}
interface RequestMatcherBuilderInterface extends Builder {}
3 changes: 1 addition & 2 deletions src/Mock/ResponseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
{
public function __construct(
private string $path,
) {
}
) {}

public function getNode(): Node
{
Expand Down

0 comments on commit 12691a4

Please sign in to comment.