Skip to content

Commit c569d92

Browse files
committed
Merge branch 'main' into fix/rabbit-mq-builder
# Conflicts: # rector.php # src/Adapter/Docker/Satellite.php # src/Cloud/Handler/Pipeline/DeclarePipelineCommandHandler.php # src/Plugin/Batching/Builder/Merge.php # src/Plugin/Batching/Repository.php # src/Plugin/FTP/Builder/Loader.php # src/Plugin/Filtering/Builder/Drop.php # src/Plugin/Filtering/Builder/Reject.php # src/Plugin/Stream/Repository.php
2 parents 4242650 + 48c50cf commit c569d92

File tree

140 files changed

+362
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+362
-182
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"php-etl/packaging": "*",
3232
"php-etl/configurator-contracts": "0.8.*",
3333
"php-etl/satellite-toolbox": "*",
34-
"php-etl/gyroscops-api-client": "*",
34+
"php-etl/gyroscops-api-client": "^0.3.0",
3535
"php-etl/dockerfile": "*",
3636
"composer/composer": "*",
3737
"symfony/deprecation-contracts": "*",

composer.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Action/Action.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
final readonly class Action
1717
{
18-
public function __construct(private ?string $plugin, private ExpressionLanguage $interpreter = new Satellite\ExpressionLanguage()) {}
18+
public function __construct(private ?string $plugin, private ExpressionLanguage $interpreter = new Satellite\ExpressionLanguage())
19+
{
20+
}
1921

2022
public function __invoke(array $config, ActionBuilder $action, RepositoryInterface $repository): void
2123
{

src/Action/ConfigurationApplier.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ public function __construct(
1717
private readonly string $plugin,
1818
private readonly FactoryInterface $service,
1919
private readonly ExpressionLanguage $interpreter,
20-
) {}
20+
) {
21+
}
2122

2223
public function withAction(): self
2324
{

src/Action/Custom/Builder/Action.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ final class Action implements ActionBuilderInterface
1212
private ?Node\Expr $logger = null;
1313
private ?Node\Expr $state = null;
1414

15-
public function __construct(private readonly Node\Expr $service, private readonly string $containerNamespace) {}
15+
public function __construct(private readonly Node\Expr $service, private readonly string $containerNamespace)
16+
{
17+
}
1618

1719
public function withLogger(Node\Expr $logger): self
1820
{

src/Action/SFTP/Builder/Action.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public function __construct(
1818
private readonly Node\Expr $password,
1919
private readonly Node\Expr $localFilePath,
2020
private readonly Node\Expr $serverFilePath,
21-
) {}
21+
) {
22+
}
2223

2324
public function withLogger(Node\Expr $logger): self
2425
{

src/Action/SFTP/Factory/Repository/Repository.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010

1111
final readonly class Repository implements Configurator\RepositoryInterface
1212
{
13-
public function __construct(private Builder\Action $builder) {}
13+
public function __construct(private Builder\Action $builder)
14+
{
15+
}
1416

1517
public function addFiles(Packaging\DirectoryInterface|Packaging\FileInterface ...$files): self
1618
{

src/Adapter/AdapterChoice.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
{
1111
public function __construct(
1212
private array $adapters,
13-
) {}
13+
) {
14+
}
1415

1516
public function __invoke(array $configuration): Configurator\SatelliteBuilderInterface
1617
{

src/Adapter/AdapterNotFoundException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44

55
namespace Kiboko\Component\Satellite\Adapter;
66

7-
final class AdapterNotFoundException extends \RuntimeException {}
7+
final class AdapterNotFoundException extends \RuntimeException
8+
{
9+
}

src/Adapter/Docker/FileOrDirectoryNotFoundException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44

55
namespace Kiboko\Component\Satellite\Adapter\Docker;
66

7-
class FileOrDirectoryNotFoundException extends \RuntimeException {}
7+
class FileOrDirectoryNotFoundException extends \RuntimeException
8+
{
9+
}

0 commit comments

Comments
 (0)