Skip to content

Commit fdc292c

Browse files
committed
Ran php-cs-fixer + added missing classes
1 parent 8d132fe commit fdc292c

File tree

4 files changed

+63
-7
lines changed

4 files changed

+63
-7
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"php-etl/pipeline": "*",
2424
"php-etl/console-state": "*",
2525
"php-etl/pipeline-console-runtime": "*",
26-
"php-etl/action-console-runtime": "*"
26+
"php-etl/action-console-runtime": "*",
27+
"php-etl/action": "*"
2728
},
2829
"require-dev": {
2930
"rector/rector": "^0.15",

composer.lock

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

src/Console.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
use Kiboko\Component\Action\Action;
88
use Kiboko\Component\Pipeline\Pipeline;
9-
use Kiboko\Component\State;
10-
use Kiboko\Contract\Satellite\RunnableInterface as JobRunnableInterface;
11-
use Kiboko\Contract\Pipeline\PipelineRunnerInterface;
129
use Kiboko\Component\Runtime\Action\Console as ActionConsoleRuntime;
1310
use Kiboko\Component\Runtime\Pipeline\Console as PipelineConsoleRuntime;
11+
use Kiboko\Component\State;
12+
use Kiboko\Contract\Pipeline\PipelineRunnerInterface;
13+
use Kiboko\Contract\Satellite\RunnableInterface as JobRunnableInterface;
1414
use Symfony\Component\Console\Output\ConsoleOutput;
1515

1616
final class Console implements WorkflowRuntimeInterface

src/WorkflowRuntimeInterface.php

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

55
namespace Kiboko\Component\Runtime\Workflow;
66

7-
use Kiboko\Contract\Job\RunnableInterface;
8-
use Kiboko\Contract\Job\SchedulingInterface;
7+
use Kiboko\Contract\Pipeline\SchedulingInterface;
8+
use Kiboko\Contract\Satellite\RunnableInterface;
99

1010
interface WorkflowRuntimeInterface extends SchedulingInterface, RunnableInterface
1111
{

0 commit comments

Comments
 (0)