Skip to content

Commit

Permalink
Fixed the CS fixer rules
Browse files Browse the repository at this point in the history
  • Loading branch information
gplanchat committed Sep 26, 2021
1 parent 693c7de commit 46ffa3b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ final class Adapter
{
public function __construct(
public string $name,
) {}
) {
}
}
3 changes: 2 additions & 1 deletion src/Feature.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ final class Feature
{
public function __construct(
public string $name,
) {}
) {
}
}
3 changes: 2 additions & 1 deletion src/Pipeline/StepExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ final class StepExtractor
{
public function __construct(
public string $name = 'extractor',
) {}
) {
}
}
3 changes: 2 additions & 1 deletion src/Pipeline/StepLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ final class StepLoader
{
public function __construct(
public string $name = 'loader',
) {}
) {
}
}
3 changes: 2 additions & 1 deletion src/Pipeline/StepTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ final class StepTransformer
{
public function __construct(
public string $name = 'transformer',
) {}
) {
}
}
3 changes: 2 additions & 1 deletion src/Runtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ final class Runtime
{
public function __construct(
public string $name,
) {}
) {
}
}

0 comments on commit 46ffa3b

Please sign in to comment.