Skip to content

Commit b5c4509

Browse files
authored
Merge pull request #4 from php-etl/feature/actions
Feature/actions
2 parents 499da7f + f070975 commit b5c4509

File tree

3 files changed

+80
-24
lines changed

3 files changed

+80
-24
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
],
1717
"require": {
1818
"php": "^8.2",
19-
"php-etl/bucket-contracts": "0.2.*"
19+
"php-etl/bucket-contracts": "0.2.*",
20+
"php-etl/satellite-contracts": "0.1.*"
2021
},
2122
"require-dev": {
2223
"phpstan/phpstan": "^1.10",

composer.lock

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

src/RunnableInterface.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
namespace Kiboko\Contract\Pipeline;
66

7-
interface RunnableInterface
7+
use Kiboko\Contract\Satellite\RunnableInterface as SatelliteRunableInterface;
8+
9+
/** @deprecated Use \Kiboko\Contract\Job\RunnableInterface instead */
10+
interface RunnableInterface extends SatelliteRunableInterface
811
{
9-
public function run(int $interval = 1000): int;
1012
}

0 commit comments

Comments
 (0)