From 46ffa3bd58a7c60a3150b6ccdf505d12d039a261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Sun, 26 Sep 2021 21:30:48 +0200 Subject: [PATCH] Fixed the CS fixer rules --- src/Adapter.php | 3 ++- src/Feature.php | 3 ++- src/Pipeline/StepExtractor.php | 3 ++- src/Pipeline/StepLoader.php | 3 ++- src/Pipeline/StepTransformer.php | 3 ++- src/Runtime.php | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/Adapter.php b/src/Adapter.php index 014ab84..5abb234 100644 --- a/src/Adapter.php +++ b/src/Adapter.php @@ -7,5 +7,6 @@ final class Adapter { public function __construct( public string $name, - ) {} + ) { + } } diff --git a/src/Feature.php b/src/Feature.php index 9e814d5..05b0f4f 100644 --- a/src/Feature.php +++ b/src/Feature.php @@ -7,5 +7,6 @@ final class Feature { public function __construct( public string $name, - ) {} + ) { + } } diff --git a/src/Pipeline/StepExtractor.php b/src/Pipeline/StepExtractor.php index c2a5d9b..ecfaa80 100644 --- a/src/Pipeline/StepExtractor.php +++ b/src/Pipeline/StepExtractor.php @@ -7,5 +7,6 @@ final class StepExtractor { public function __construct( public string $name = 'extractor', - ) {} + ) { + } } diff --git a/src/Pipeline/StepLoader.php b/src/Pipeline/StepLoader.php index b6f3430..a675f59 100644 --- a/src/Pipeline/StepLoader.php +++ b/src/Pipeline/StepLoader.php @@ -7,5 +7,6 @@ final class StepLoader { public function __construct( public string $name = 'loader', - ) {} + ) { + } } diff --git a/src/Pipeline/StepTransformer.php b/src/Pipeline/StepTransformer.php index f7accc5..effc376 100644 --- a/src/Pipeline/StepTransformer.php +++ b/src/Pipeline/StepTransformer.php @@ -7,5 +7,6 @@ final class StepTransformer { public function __construct( public string $name = 'transformer', - ) {} + ) { + } } diff --git a/src/Runtime.php b/src/Runtime.php index 612f834..e36e93d 100644 --- a/src/Runtime.php +++ b/src/Runtime.php @@ -7,5 +7,6 @@ final class Runtime { public function __construct( public string $name, - ) {} + ) { + } }