From ab387e512264067e5b254305743311e2a8d5ace5 Mon Sep 17 00:00:00 2001 From: ping-yee <611077101@mail.nknu.edu.tw> Date: Sun, 5 Mar 2023 19:15:26 +0800 Subject: [PATCH] Dev: Remove the condition. --- src/Orchestration/Orchestrator.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Orchestration/Orchestrator.php b/src/Orchestration/Orchestrator.php index 27fcb89..9596e18 100644 --- a/src/Orchestration/Orchestrator.php +++ b/src/Orchestration/Orchestrator.php @@ -180,9 +180,6 @@ public function getStepAction(string $alias): ActionInterface { foreach ($this->steps as $step) { if (!$step->aliasNonRepeat($alias)) { - if ($step->getStepAction($alias)->getMeaningData() === null) { - throw OrchestratorException::forStepActionMeaningDataIsNull($alias); - } return $step->getStepAction($alias); } }