Skip to content

Commit 11fa39c

Browse files
committed
update dependencies
1 parent 6dbf829 commit 11fa39c

File tree

3 files changed

+93
-33
lines changed

3 files changed

+93
-33
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"description": "This library allows you to use the hook runtime",
44
"type": "library",
55
"require": {
6-
"php": "^8.0",
7-
"php-etl/pipeline-contracts": "^0.3.0",
6+
"php": "^8.2",
7+
"php-etl/pipeline-contracts": "0.4.*",
88
"psr/container": "^1.0"
99
},
1010
"license": "MIT",
@@ -23,7 +23,7 @@
2323
"prefer-stable": true,
2424
"extra": {
2525
"branch-alias": {
26-
"dev-main": "0.1.x-dev"
26+
"dev-main": "0.2.x-dev"
2727
}
2828
}
2929
}

composer.lock

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

src/HookRuntime.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
use Kiboko\Contract\Pipeline\StateInterface;
1313
use Kiboko\Contract\Pipeline\TransformerInterface;
1414
use Kiboko\Contract\Pipeline\TransformingInterface;
15+
use Kiboko\Contract\Pipeline\WalkableInterface;
1516
use Psr\Container\ContainerInterface;
1617

1718
class HookRuntime implements HookRuntimeInterface
1819
{
1920
private MemoryState $state;
2021

2122
public function __construct(
22-
private PipelineInterface $pipeline,
23+
private PipelineInterface&WalkableInterface $pipeline,
2324
private ContainerInterface $container,
2425
?StateInterface $state = null
2526
) {

0 commit comments

Comments
 (0)