Skip to content

Commit

Permalink
fix: missing public methods to build diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverde8 committed Nov 10, 2024
1 parent 1ffff24 commit 7a7d841
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/Oliverde8/Component/PhpEtl/ChainProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,14 @@ public function initObserver(?callable $observerCallback = null): ChainObserver

return $this->chainObserver;
}
}

public function getChainLinkNames(): array
{
return $this->chainLinkNames;
}

public function getChainLinks(): array
{
return $this->chainLinks;
}
}
4 changes: 4 additions & 0 deletions src/Oliverde8/Component/PhpEtl/ChainProcessorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@ public function processGenerator(
bool $withStop = true,
bool $allowAsynchronous = true
): \Generator;

public function getChainLinkNames(): array;

public function getChainLinks(): array;
}

0 comments on commit 7a7d841

Please sign in to comment.